{% extends "base.html" %} {% load static %} {% block title %} 资料下载 {% endblock %} {% block content %}
资料列表
{% for doc in docList %}
{{doc.title}} 【{{doc.publishDate|date:"Y-m-d"}}】
{% endfor %} {% if pageData %}
    {% if pageData.first %}
  • 1
  • {% endif %} {% if pageData.left %} {% if pageData.left_has_more %}
  • ...
  • {% endif %} {% for i in pageData.left %}
  • {{i}}
  • {% endfor %} {% endif %}
  • {{pageData.page}}
  • {% if pageData.right %} {% for i in pageData.right %}
  • {{i}}
  • {% endfor %} {% if pageData.right_has_more %}
  • ...
  • {% endif %} {% endif %} {% if pageData.last %}
  • {{pageData.total_pages}}
  • {% endif %}
{% endif %}
{% endblock %}