{% extends 'base.html' %} {% from 'bootstrap/pagination.html' import render_pagination %} {% from 'bootstrap/form.html' import render_form, render_field %} {% block title %}{{ photo.author.name }}的照片{% endblock %} {% block content %}
分享 {% if current_user == photo.author or current_user.can('MODERATE') %} 删除 {% endif %} {% if current_user.is_authenticated and current_user != photo.author %}
{% endif %}

上传 {{ moment(photo.timestamp).format('LL') }}

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