Fixes #3211, fixes #3211: related books and pictures bars.
[wolnelektury.git] / apps / picture / views.py
index 4bc2ab0..78700d1 100644 (file)
@@ -88,6 +88,18 @@ def import_picture(request):
         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)