{% macro category(category,questions) -%} {% set fl = 0 %} {% if category == 'topic' %} {% set chname = '创建的主题' %} {% set chlist = ['的回复','的笔记','的收藏'] %} {% set enlist = ['rep','ntb','collect'] %} {% set fl = 1 %} {% elif category == 'rep' %} {% set chname = '的回复' %} {% set chlist = ['的回复','的笔记','的收藏'] %} {% set enlist = ['rep','ntb','collect'] %} {% set fl = 1 %} {% elif category == 'ntb' %} {% set chname = '的笔记' %} {% set chlist = ['的回复','的笔记','的收藏'] %} {% set enlist = ['rep','ntb','collect'] %} {% set fl = 1 %} {% else %} {% set chname = '的收藏' %} {% set chlist = ['的回复','的笔记','的收藏'] %} {% set enlist = ['rep','ntb','collect'] %} {% set fl = 1 %} {% endif %}
{% if fl == 1 %} {{ g.user_url }}{{ chname }} {% else %} {{ g.user_url }}{{ chname }} {% endif %} {% for list in chlist %} {% set num = 0 %} {{ g.user_url }}{{ list }} {% set num = num + 1 %} {% endfor %}
{% for question in questions %}
{{ question.title }}
创建日期:{{ question.time.strftime('%Y-%m-%d %H:%M') }} 最后回复来自 {{ question.last_reply }}
{% endfor %}
{%- endmacro %}