topic_list.html 772 B

12345678910111213141516171819202122
  1. {% extends 'base/base.html' %}
  2. {% block content %}
  3. {% from 'mine/_macro.html' import user_title,nav_list %}
  4. {{ breadcrumb(hrefs={_('UserList'):url_for('user.list')},active=user.username) }}
  5. <div class="row">
  6. <div class="col-md-3" style="padding-right:0;">
  7. {% set setting = user.setting %}
  8. {{ user_title(user) }}
  9. <div style="background:#fff;border:1px solid #ddd;border-radius:5px">
  10. {% if g.user.is_authenticated and g.user.username == user.username %}
  11. {{ nav_list('topic',user.username)}}
  12. {% else %}
  13. {{ nav_list('topic',user.username)}}
  14. {% endif %}
  15. </div>
  16. </div>
  17. <div class="col-md-9">
  18. {% include "mine/_topic_macro.html" %}
  19. </div>
  20. </div>
  21. {% endblock %}