{% extends 'base.html' %} {% block container %}
{% include "partial/breadcrumb.html" %}
内容简介:{{archive.Description}}...
用户评论
{% commentList comments with itemId=archiveId type="page" limit="10" %} {% for item in comments %}
{% if item.Status != 1 %} 审核中:{{item.UserName|truncatechars:6}} {% else %} {{item.UserName}} {% endif %} {% if item.Parent %} 回复 {% if item.Status != 1 %} 审核中:{{item.Parent.UserName|truncatechars:6}} {% else %} {{item.Parent.UserName}} {% endif %} {% endif %} {{stampToDate(item.CreatedTime, "2006-01-02")}}
{% if item.Parent %}
{% if item.Parent.Status != 1 %} 该内容正在审核中:{{item.Parent.Content|truncatechars:9}} {% else %} {{item.Parent.Content|truncatechars:100}} {% endif %}
{% endif %} {% if item.Status != 1 %} 该内容正在审核中:{{item.Content|truncatechars:9}} {% else %} {{item.Content}} {% endif %}
{% endfor %} {% endcommentList %}
{% pagination pages with show="4" %}
{{pages.FirstPage.Name}} {% if pages.PrevPage %} {{pages.PrevPage.Name}} {% endif %} {% for item in pages.Pages %} {{item.Name}} {% endfor %} {% if pages.NextPage %} {{pages.NextPage.Name}} {% endif %} {{pages.LastPage.Name}}
{% endpagination %}
{% include "partial/author.html" %}
为您推荐
{% archiveList popularArticles with type="list" order="views desc" limit="6" %} {% endarchiveList %}
{% endblock %}