Mercurial > public > sg101
annotate irc/views.py @ 953:8647a669edb4
Fix excessive cache usage for forum date/times.
Issue #84. Hitting the cache 30+ times while browsing the forums
to adjust all the dates/times into the user's time zone. Just
hit the user's profile and be done with it. It should be loaded.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 19 May 2015 21:08:45 -0500 |
parents | 79e785f0bdad |
children | 19d34242473e |
rev | line source |
---|---|
bgneal@656 | 1 """Views for the IRC application""" |
gremmie@1 | 2 |
bgneal@656 | 3 from django.shortcuts import render |
gremmie@1 | 4 |
bgneal@656 | 5 from irc.channel import get_users |
bgneal@656 | 6 |
gremmie@1 | 7 |
gremmie@1 | 8 def view(request): |
bgneal@656 | 9 nicks = get_users() |
bgneal@656 | 10 return render(request, 'irc/view.html', {'nicks': nicks}) |