{% extends 'base.html' %} {% from 'bootstrap/pagination.html' import render_pagination %} {% from 'bootstrap/form.html' import render_form, render_field %} {% block title %}{{ photo.author.name }}'s Photo{% endblock %} {% block content %}
Share {% if current_user == photo.author or current_user.can('MODERATE') %} Delete {% endif %} {% if current_user.is_authenticated and current_user != photo.author %}
{% endif %}

Upload at {{ moment(photo.timestamp).format('LL') }}

{% include 'main/_comment.html' %}
{% include 'main/_photo_sidebar.html' %}
{% if current_user.is_authenticated %} {% endif %} {% endblock %}