26 lines
841 B
HTML
26 lines
841 B
HTML
<!DOCTYPE html>
|
|
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h2>Forum</h2>
|
|
{% for category, thread in threads.items %}
|
|
<div class="forum-category">{{ category }}</div>
|
|
<table>
|
|
<tr>
|
|
<th>Thread</th>
|
|
<th>Posts</th>
|
|
<th>Last Post</th>
|
|
</tr>
|
|
{% for t in thread %}
|
|
<tr>
|
|
<td>
|
|
<a href="{% url 'thread' t.id %}">{{ t.title }}</a>
|
|
<br>
|
|
<small>{{ t.description }}</small>
|
|
</td>
|
|
<td>{{ t.post_count }}</td>
|
|
<td>by {{ t.most_recent_poster }} at {{ t.most_recent_post_date }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% endfor %}
|
|
{% endblock %}
|