{% extends 'app_doc/manage_base.html' %} {% load staticfiles %} {% block title %}文集设置{% endblock %} {% block content %}
文集管理 文集设置
文集:{{pro.name}}

基本信息

权限控制

{% csrf_token %}
不少于4位数

下载和导出

{% csrf_token %} {% load project_filter %}
注意:开启某类型文件下载后,请先点击“生成或更新XXX文件”,文集文档中如果包含公式、流程图、时序图、脑图等内容,将会延长生成时间,请耐心等待
{% if enable_project_report %} 生成或更新EPUB文件 {% if project_files %} {% for file in project_files %} {% if file.file_type == 'epub' %} | 下载文集EPUB文件 {% else %} {% endif %} {% endfor %} {% else %} | 未生成文集导出文件 {% endif %} {% endif %}
{% if enable_project_report %} 生成或更新PDF文件 {% if project_files %} {% for file in project_files %} {% if file.file_type == 'pdf' %} | 下载文集PDF文件 {% else %} {% endif %} {% endfor %} {% else %} | 未生成文集导出文件 {% endif %} {% endif %}

删除文集

{% endblock %} {% block custom_script %} {% endblock %}