{% extends 'app_doc/user/user_base.html' %} {% load static %} {% load i18n %} {% block title %}{% trans "文集文档排序" %}{% endblock %} {% block custom_element %} {% endblock %} {% block content %}
{% trans "文集:" %}{{pro.name}}
    {% for docs in doc_list %}
  • {{docs.title}} {% if docs.children %}
      {% for node in docs.children %}
    • {{node.title}} {% if node.children %}
        {% for doc in node.children %}
      • {{doc.title}}
        • {% endfor %}
        {% else %}
          {% endif %}
        • {% endfor %}
        {% else %}
          {% endif %}
        • {% endfor %}
        {% endblock %} {% block custom_script %} {% endblock %}