Mercurial > public > sg101
view smiley/views.py @ 1075:5bba39fafad8
Added mgmt command to fix news story video embeds.
These embeds stopped working when we went to https.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 16 Apr 2016 00:31:06 -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), })