all_posts.html 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. {% extends theme('layout.html') %}
  2. {% from theme('macros.html') import render_pagination %}
  3. {% block content %}
  4. <ul class="breadcrumb">
  5. <li><a href="{{ url_for('forum.index') }}">Forum</a></li>
  6. <li ><a href="{{ user.url }}">{{ user.username }}</a></li>
  7. <li class="active">All Posts</li>
  8. </ul>
  9. <div class="pull-left" style="padding-bottom: 10px">
  10. {{ render_pagination(posts, url_for('user.view_all_posts', username=user.username)) }}
  11. </div> <!-- end span pagination -->
  12. <table class="table table-bordered">
  13. <tbody>
  14. {% for post in posts.items %}
  15. <tr>
  16. <td>
  17. <strong><a href="{{ post.topic.url }}">{{ post.topic.title }}</a></strong>
  18. in <a href="{{ post.topic.forum.url }}">{{ post.topic.forum.title }}</a>
  19. <span class="divider"> - </span>
  20. <small>{{ post.date_created|time_since }}</small>
  21. </td>
  22. </tr>
  23. <tr>
  24. <td>
  25. {{ post.content }}
  26. </td>
  27. </tr>
  28. {% endfor %}
  29. </tbody>
  30. </table>
  31. {% endblock %}