2
2
{% load pybb_extras %}
6
{{ forum.name }} - {{ block.super }}
10
<link rel="alternate" type="application/atom+xml" title="Latest Posts on forum '{{ forum.name }}'" href="{% url pybb_feed "posts" %}{{forum.id}}/" />
11
<link rel="alternate" type="application/atom+xml" title="Latest Topics on forum '{{ forum.name }}'" href="{% url pybb_feed "topics"%}{{forum.id}}/" />
16
{% include "django_messages/inlines/navigation.html" %}
19
<div class="box_item_model">
20
6
<div class="forum-list">
21
<span class="title"><a href="/forum/">Forum</a> ⇒ {{ forum }}</span>
7
<span class="title">{{ forum }}</span>
23
9
<div class="index_forum">
27
{% pybb_pagination _('Topics') %}
30
<div class="controls">
31
<a href="{% url pybb_add_topic forum.id %}">
32
<img src="{{MEDIA_URL}}/forum/img/en/new_topic.png" height="25" alt ="{% trans "New Topic" %}" style="float:right" />
38
<table cellspacing="1" width="100%">
40
<th width="5%"> </th>
41
<th width="40%" nowrap="nowrap" align="left">Topic</th>
42
<th nowrap="nowrap">Creator</th>
43
<th nowrap="nowrap">At</th>
44
<th nowrap="nowrap">Posts</th>
45
<th nowrap="nowrap">Views</th>
46
<th width="20%" nowrap="nowrap">Last Post</th>
50
{% for topic in topics %}
51
{% include "pybb/inlines/topic_row.html" %}
57
{% pybb_pagination _('Topics') %}
60
<div class="controls">
61
<a href="{% url pybb_add_topic forum.id %}">
62
<img src="{{MEDIA_URL}}/forum/img/en/new_topic.png" height="25" alt ="{% trans "New Topic" %}" style="float:right"/>
10
{% pybb_pagination _('Topics') %}
11
<div class="controls">
12
<a href="{% url pybb_add_topic forum.id %}">{% trans "New topic" %}</a>
15
<table cellspacing="1" width="100%">
17
<th width="5%"> </td>
18
<th width="40%" nowrap="nowrap" align="left">Topic</td>
19
<th nowrap="nowrap">Creator</td>
20
<th nowrap="nowrap">At</td>
21
<th nowrap="nowrap">Posts</td>
22
<th nowrap="nowrap">Views</td>
23
<th width="20%" nowrap="nowrap">Last Post</td>
27
{% for topic in forum.topics.all %}
28
{% include "pybb/inlines/topic_row.html" %}
32
{% pybb_pagination _('Topics') %}
33
<div class="controls">
34
<a href="{% url pybb_add_topic forum.id %}">{% trans "New topic" %}</a>
70
39
<table class="legend">
73
<img src="{{MEDIA_URL}}/forum/img/folder_new.png" style=":" alt="" align="middle" />
75
<td>= Unread posts</td>
77
<img src="{{MEDIA_URL}}/forum/img/folder.png" style="" alt="" align="middle" />
79
<td>= No unread posts</td>
42
<img src="{{MEDIA_URL}}/forum/img/folder_new.png" style=":" alt="" align="middle" />
43
</td><td>= Unread posts</td>
45
<img src="{{MEDIA_URL}}/forum/img/folder.png" style="" alt="" align="middle" />
46
</td><td>= No unread posts</td>