用户评论 查看更多>>
{% commentList comments with type="list" limit="6" %} {% 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 %}