{% extends 'base.html' %}
{% load i18n thumbnail comments %}
{% block extra_head %}
{% endblock %}
{% block infocolumn %}{% endblock %}
{% block content %}
{% thumbnail photo.photo "800" upscale=False as im %}
{% endthumbnail %}
{% if photo.user == request.user %}
{% trans "Delete" %}
{% endif %}
{% render_comment_list for photo %}
{% with photo.get_absolute_url as next %}
{% render_comment_form for photo %}
{% endwith %}
{% endblock %}