{% extends 'admin/index.html' %} {% from 'bootstrap/pagination.html' import render_pagination %} {% block title %}Manage Photos{% endblock %} {% block content %} {% if photos %} {% for photo in photos %} {% endfor %}
照片 描述 标签 作者 报告 日期 操作
{{ photo.description }} {% if photo.tags %} {% for tag in photo.tags %}
{% endfor %} {% endif %}
{{ photo.author.name }} {{ photo.flag }} {{ moment(photo.timestamp).format('LL') }}
{% else %}
无照片
{% endif %} {% endblock %}