X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/9ce7b544a0616db407be602ea453771fc9c0a6dd..75957f735219259d3b4bc361f80ccd3d7b92a0e9:/src/picture/views.py diff --git a/src/picture/views.py b/src/picture/views.py index 98485afec..6345f2008 100644 --- a/src/picture/views.py +++ b/src/picture/views.py @@ -4,9 +4,8 @@ from django.conf import settings from django.contrib.auth.decorators import permission_required from django.shortcuts import render, get_object_or_404, render -from picture.models import Picture, PictureArea +from picture.models import Picture from catalogue.utils import split_tags -from ssify import ssi_included from sponsors.models import Sponsor from wolnelektury.utils import ajax @@ -100,24 +99,3 @@ def import_picture(request): return HttpResponse(_("Picture imported successfully")) else: return HttpResponse(_("Error importing file: %r") % import_form.errors) - - -@ssi_included -def picture_short(request, pk): - picture = get_object_or_404(Picture, pk=pk) - - return render(request, 'picture/picture_short.html', { - 'picture': picture, - }) - - -@ssi_included -def picturearea_short(request, pk): - area = get_object_or_404(PictureArea, pk=pk) - themes = area.tags.filter(category='theme') - things = area.tags.filter(category='thing') - return render(request, 'picture/picturearea_short.html', { - 'area': area, - 'theme': themes[0] if themes else None, - 'thing': things[0] if things else None, - })