_macro.html 1.1 KB

123456789101112131415161718192021222324252627282930
  1. {% macro board_body(board) -%}
  2. {% import 'base/link.html' as link %}
  3. <div class="panel-body" style="border-bottom:1px solid #eea">
  4. <div class="row" style="padding:0;margin:0;">
  5. <div class="col-md-2">
  6. <dl style="margin:0;">
  7. <dd>{{ link.board(board) }}</dd>
  8. <dd style="font-size:12px;">
  9. <span style="color:#999;">{{_('Topics:')}}</span>
  10. <span>{{ board.topic_count }}</span>
  11. <span style="color:#999;">{{ _('Posts:')}}</span>
  12. <span>{{ board.post_count }}</span>
  13. </dd>
  14. </dl>
  15. </div>
  16. <div class="col-md-offset-8 col-md-2" style="font-size:12px">
  17. {% set newest_topic = board.newest_topic %}
  18. {% if newest_topic %}
  19. <dl style="margin:0;">
  20. <dt style="word-wrap: break-word;word-break: normal;">{{ link.topic(newest_topic)}}</dt>
  21. <dd>{{ _('published by %(author)s',author=link.user(newest_topic.author)) }}</dd>
  22. <dd>{{ newest_topic.created_at | timesince }}</dd>
  23. </dl>
  24. {% else %}
  25. {{_('No Topic')}}
  26. {% endif %}
  27. </div>
  28. </div>
  29. </div>
  30. {%- endmacro %}