Mercurial > public > sg101
view smiley/views.py @ 1096:d9cd3180c12c
More GCalendar V3 conversion in progress.
Built a brand new post editor. It is hardcoded into GCalendar
right now. We will make it more general in the future.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 14 Jun 2016 21:16:09 -0500 |
parents | e932f2ecd4a7 |
children |
line wrap: on
line source
""" Views for the Smiley application. """ from django.shortcuts import render from django.contrib.auth.decorators import login_required from django.views.decorators.http import require_GET from smiley.models import Smiley @login_required @require_GET def farm(request, extra=False): return render(request, 'smiley/smiley_farm.html', { 'smilies': Smiley.objects.get_smilies(extra), })