{% import 'base/link.html' as link_base %} {% from 'base/paginate.html' import paginate %}
排序:
{% if topics.items %} {% if setting.topic_list == 1 or (setting.topic_list == 2 and g.user.is_authenticated) or (g.user.is_authenticated and g.user.username == g.user_url) %} {% for topic in topics.items %}
{{ topic.board.board }} {{ link_base.topic(topic) }}
创建日期:{{ topic.publish.strftime('%Y-%m-%d %H:%M') }} 最后回复来自 {{ link_base.user(topic.author.username) }}
{% endfor %} {% if topics.pages > 1 %} {% endif %} {% else %}
根据用户设置,列表被隐藏
{% endif %} {% else %}
没有主题
{% endif %}