Mercurial > public > sg101
view smiley/views.py @ 1175:9caf10deb45c
Update MP3 comp link blocks
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 16 Feb 2019 14:25:42 -0600 |
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), })