{% import 'base/link.html' as link %} {% for topic in topics.items %} {% set last_reply = topic.id | get_last_reply %} {% set username = topic.author.username %}
1805
{% for tag in topic.tags %} {{ link.tag(tag)}} {% endfor %} {{ username}} {% if last_reply %} {% set name = last_reply.author.username %} 最后由 {{ name }}1 小时前回复 {% else %} 1 小时前发布 {% endif %}
29
{% endfor %}