Mercurial > public > sg101
view irc/views.py @ 884:4dd7e1b5efe8
New NSSR Latin surf logo.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Fri, 23 Jan 2015 18:56:02 -0600 |
parents | 79e785f0bdad |
children | 19d34242473e |
line wrap: on
line source
"""Views for the IRC application""" from django.shortcuts import render from irc.channel import get_users def view(request): nicks = get_users() return render(request, 'irc/view.html', {'nicks': nicks})