{% extends "photos/base.html" %} {% load i18n %} {% load humanize %} {% load tagging_tags %} {% load wiki_tags %} {% load markup %} {% load switchcase %} {% load restructuredtext %} {% load comments_tag %} {% load photo_tags %} {% load flagtags %} {% block head_title %}{% blocktrans %}Editing Photo Details{% endblocktrans %}{% endblock %} {% block body %}
{% include "photos/photo_right_panel.html" %}

{% trans "Photo Details" %}

{% trans "Editing Photo" %} {% ifequal photo.member request.user %}
{% for field in photo_form %} {% if field.errors %}{% endif %} {% if field.help_text %}{% endif %} {% endfor %}
{{ photo_form.non_field_errors }}
{{ field.errors }}
{{ field.label_tag }} {{ field }}
{{ field.help_text }}
{% else %}

You are not the author of this photo.

{% endifequal %}
{% endblock %}