{% load humanize %} {% load tagging_tags %} {% load photo_tags %} {% load bootstrap_pagination_tags %} {% load smart_if %}

{% firstof photo.title "Untitled" %}


{{ photo.title|truncatechars:123 }}
{{ photo.title }} by {% if photo.photographer %} {{ photo.photographer }} {% else %} {{ photo.creator.get_full_name }}. {% endif %} {% if photo.get_license == photo.default_license %} {{ photo.default_license.name }}. {% else %} {% blocktrans with photo.get_license.deed as phodeed and photo.get_license.name as phoname %}Licensed under {{ phoname }}.{% endblocktrans %} {% endif %}
{% blocktrans with c=photo.caption|safe %}{{ c }}{% endblocktrans %}
{% photo_options request.user photo %}
{% if tags %}
{% trans 'Tags' %}: {% for tag in tags %} {{ tag }} {% endfor %}
{% endif %}