index.html 757 B

123456789101112131415161718192021222324252627282930313233
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <ul>
  4. <li><a href="/top">Top</a></li>
  5. <li><a href="/new">New</a></li>
  6. <!--li><a href="/cats">Categories</a></li>
  7. <li><a href="/unread">Unread</a></li -->
  8. </ul>
  9. <a href="/post">Write a new topic</a>
  10. <table style="width:100%">
  11. <tr>
  12. <th>Title</th>
  13. <th>Category</th>
  14. <th>Last Activity</th>
  15. <th>Author</th>
  16. <th>Replies</th>
  17. <th>Views</th>
  18. </tr>
  19. {% for topic in topics %}
  20. <tr>
  21. <td><a href="/topic/{{ topic.id }}"><b>{{ topic.title }}</b></a></td>
  22. <td><a href="/cat/{{ topic.category }}">{{ topic.category }}</a></td>
  23. <td>{{ topic.lastActivity }}</td>
  24. <td>{{ topic.author }}</td>
  25. <td>{{ topic.repliesNum }}</td>
  26. <td>{{ topic.views }}</td>
  27. </tr>
  28. {% endfor %}
  29. </table>
  30. {% endblock %}