_macro.html 651 B

123456789101112131415161718192021222324
  1. {% import 'base/link.html' as link %}
  2. {% macro tags(topic) -%}
  3. {% for tag in topic.tags %}
  4. {{ link.tag(tag) }}
  5. {% endfor %}
  6. {%- endmacro %}
  7. {% macro last_reply(topic) -%}
  8. <span style="margin-left:10px;">
  9. {% set last_reply = topic.replies.first() %}
  10. {{ topic.author.username }}
  11. {{ _('published at %(time)s',time = topic.created_at | timesince ) }}
  12. {% if last_reply %}
  13. · {{ _('The last reply published by %(author)s at %(time)s',author=link.user(last_reply.author.username),time=last_reply.created_at | timesince)}}
  14. {% endif %}
  15. </span>
  16. {%- endmacro %}
  17. {% macro title(topic) -%}
  18. {{ tags(topic) }}
  19. {{ last_reply(topic) }}
  20. {%- endmacro %}