-
-
-@ssi_included
-def picture_mini(request, pk, with_link=True):
- picture = get_object_or_404(Picture, pk=pk)
- return render(request, 'picture/picture_mini_box.html', {
- 'picture': picture,
- 'author': picture.author_unicode(),
- '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)
- 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,
- })