{% extends 'base.html' %} {% block container %}
{% breadcrumb crumbs with title=false %} {% for item in crumbs %} {{item.Name}} {% endfor %} {% endbreadcrumb %}
内容简介:{{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 %}
{% include "partial/pagination.html" %}
{% include "partial/author.html" %}
热门文章
{% archiveList popularArticles with type="list" order="views desc" limit="6" %} {% endarchiveList %}
{% endblock %}