{% extends "photos/base.html" %} {% load i18n %} {% load humanize %} {% load tagging_tags %} {% 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" %}

{% ifequal photo.member request.user %}
{% csrf_token %} {% 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 %}