view gpp/irc/views.py @ 560:4e891919c63f

Changed the avatar upload_to path to not rely on the user supplied name, as this has caused problems in the past (too long). Now just store avatars under media/avatars/users/username.ext.
author Brian Neal <bgneal@gmail.com>
date Thu, 02 Feb 2012 20:09:19 -0600
parents dbd703f7d63a
children
line wrap: on
line source
"""views for the IRC application"""

from django.shortcuts import render_to_response
from django.template import RequestContext

from irc.models import IrcChannel

def view(request):
   nicks = IrcChannel.objects.all()
   return render_to_response('irc/view.html',
         {'nicks': nicks},
         context_instance = RequestContext(request))