+
+
+def picture_viewer(request, slug):
+ picture = get_object_or_404(Picture, slug=slug)
+ sponsors = []
+ for sponsor in picture.extra_info.get('sponsors', []):
+ have_sponsors = Sponsor.objects.filter(name=sponsor)
+ if have_sponsors.exists():
+ sponsors.append(have_sponsors[0])
+ return render_to_response("picture/picture_viewer.html", locals(),
+ context_instance=RequestContext(request))
+
+
+# =========
+# = Admin =
+# =========
+@permission_required('picture.add_picture')
+def import_picture(request):
+ """docstring for import_book"""
+ from django.http import HttpResponse
+ from picture.forms import PictureImportForm
+ from django.utils.translation import ugettext as _
+
+ import_form = PictureImportForm(request.POST, request.FILES)
+ if import_form.is_valid():
+ try:
+ import_form.save()
+ except:
+ import sys
+ import pprint
+ import traceback
+ info = sys.exc_info()
+ exception = pprint.pformat(info[1])
+ tb = '\n'.join(traceback.format_tb(info[2]))
+ return HttpResponse(_("An error occurred: %(exception)s\n\n%(tb)s") % {'exception':exception, 'tb':tb}, mimetype='text/plain')
+ return HttpResponse(_("Picture imported successfully"))
+ else:
+ return HttpResponse(_("Error importing file: %r") % import_form.errors)
+
+
+@ssi_included
+def picture_mini(request, pk, with_link=True):
+ picture = get_object_or_404(Picture, pk=pk)
+ author_str = ", ".join(tag.name
+ for tag in picture.tags.filter(category='author'))
+ return render(request, 'picture/picture_mini_box.html', {
+ 'picture': picture,
+ 'author_str': author_str,
+ 'with_link': with_link,
+ })
+
+
+@ssi_included
+def picture_short(request, pk):
+ picture = get_object_or_404(Picture, pk=pk)
+
+ return render(request, 'picture/picture_short.html', {
+ 'picture': picture,
+ 'main_link': picture.get_absolute_url(),
+ 'request': request,
+ 'tags': split_tags(picture.tags),
+ })
+
+
+@ssi_included
+def picturearea_short(request, pk):
+ area = get_object_or_404(PictureArea, pk=pk)
+ theme = area.tags.filter(category='theme')
+ theme = theme and theme[0] or None
+ thing = area.tags.filter(category='thing')
+ thing = thing and thing[0] or None
+ return render(request, 'picture/picturearea_short.html', locals())