{% extends 'app_doc/manage_base.html' %} {% load staticfiles %} {% block title %}文集下载状态管理 - {{pro.name}}{% endblock %} {% block content %} {% if enable_project_report %} {% else %}
站点管理员未启用文集导出下载文件功能,相关操作将在此功能启用后生效!
{% endif %}
文集管理 下载状态管理
修改文集前台下载导出权限
{% csrf_token %}
{% load project_filter %}
{% 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 %}
注意:开启某类型文件下载后,请先点击“生成或更新XXX文件”,文集文档中如果包含公式、流程图、时序图、脑图等内容,将会延长生成时间,请耐心等待
{% endblock %} {% block custom_script %} {% endblock %}