Mercurial > public > sg101
annotate irc/views.py @ 1157:e4f2d6a4b401
Rework S3 connection logic for latest versions of Python 2.7.
Had to make these changes for Ubuntu 16.04. Seems backward compatible
with production.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 19 Jan 2017 18:35:53 -0600 |
parents | 19d34242473e |
children |
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@1073 | 10 return render(request, 'irc/view.html', { |
bgneal@1073 | 11 'nicks': nicks, |
bgneal@1073 | 12 'V3_DESIGN': True, |
bgneal@1073 | 13 }) |