Mercurial > public > sg101
view irc/views.py @ 794:f416f5db3d91
Improve accounts registration question 7 error message.
One potential user thought it was referring to the combo box
above it on the form, not the checkboxes.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 27 May 2014 15:06:38 -0500 |
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})