{% extends 'app_doc/user/user_base.html' %} {% load static %} {% load i18n %} {% block title %}{% trans "文档历史版本管理" %}{% endblock %} {% block content %}
{% trans "文档:" %}{{doc.name}} {% trans "的历史版本管理" %}
{% for his in historys %} {% endfor %}
{% trans "创建时间" %} {% trans "创建人" %} {% trans "操作" %}
{{ his.create_time }} {{ his.create_user }} {% trans "对比" %} {% trans "删除" %}
{% if historys.has_previous %} {% trans "上一页" %} {% else %} {% trans "上一页" %} {% endif %} {{ historys.number }}/{{ historys.paginator.num_pages }} {% if historys.has_next %} {% trans "下一页" %} {% else %} {% trans "下一页" %} {% endif %}
{% endblock %} {% block custom_script %} {% endblock %}