{% extends "base.html" %} {% block title %} 归档 {% endblock %} {% block style %} {{ super() }} {% endblock %} {% block context %} {% if form and current_user.check_role("WriteBlog") %}
{{ form.hidden_tag() }}
{{ form.name.label }} {{ form.name(class="form-control") }}
{{ form.describe.label }} {{ form.describe(class="form-control") }}

{% endif %}
{% for archive in archive_list %}

{{ archive[1] }}


{{ archive[2] }}

篇数: {{ archive[3] }}

进入 {% if show_delete %} {% endif %}
{% endfor %}
{% endblock %}