{% extends 'app_doc/user/user_base.html' %} {% load static %} {% load i18n %} {% block title %}{% trans "文档模板管理" %}{% endblock %} {% block content %}
{% trans "文档模板管理" %}
{% trans "新建" %}
{% for temp in doctemps %} {% endfor %}
{% trans "模板名称" %} {% trans "创建时间" %} {% trans "操作" %}
{{ temp.name }} {{ temp.create_time }} {% trans "修改" %} {% trans "删除" %}
{% if doctemps.has_previous %} {% trans "上一页" %} {% else %} {% trans "上一页" %} {% endif %} {{ doctemps.number }}/{{ doctemps.paginator.num_pages }} {% if doctemps.has_next %} {% trans "下一页" %} {% else %} {% trans "下一页" %} {% endif %}
{% endblock %} {% block custom_script %} {% endblock %}