2
2
{% load pybb_extras %}
6
{{ topic.name }} - {{ topic.forum.name }} - {{ block.super }}
10
<link rel="alternate" type="application/atom+xml" title="Latest Posts on forum '{{ topic.forum.name }}'" href="{% url pybb_feed "posts" %}{{topic.forum.id}}/" />
11
<link rel="alternate" type="application/atom+xml" title="Latest Topics on forum '{{ topic.forum.name }}'" href="{% url pybb_feed "topics"%}{{topic.forum.id}}/" />
16
{% include "django_messages/inlines/navigation.html" %}
19
<div class="box_item_model">
20
<span class="title"><a href="/forum/">Forum</a> ⇒ <a href="{{ topic.forum.get_absolute_url }}">{{ topic.forum.name }}</a> ⇒ {{ topic }}</span>
22
{% pybb_pagination _('Posts') %}
23
<div class="posts" style="clear:left">
24
<a name="top" id="top"></a>
25
<table cellspacing="1" width="100%">
28
<th width="85%" nowrap="nowrap">Message</th>
33
{% ifnotequal first_post posts.0 %}
34
{% with first_post as post %}
35
<div class="post first_post">
36
{% include "pybb/inlines/post.html" %}
41
{% for post in posts %}
43
{% include "pybb/inlines/post.html" %}
47
{% pybb_pagination _('Posts') %}
49
<div class="controls">
7
{% pybb_pagination _('Posts') %}
11
<table cellspacing="1" width="100%">
14
<th width="85%" nowrap="nowrap">Message</td>
19
{% ifnotequal first_post posts.0 %}
20
{% with first_post as post %}
21
<div class="first_post">
22
{% include "pybb/inlines/post.html" %}
27
{% for post in posts %}
29
{% include "pybb/inlines/post.html" %}
34
{% pybb_pagination _('Posts') %}
35
<div class="controls">
53
<a href="{% url pybb_unstick_topic topic.id %}">
54
<img src="{{MEDIA_URL}}/forum/img/en/unstick_topic.png" height="25" alr="{% trans "Unstick topic" %}" />
57
<a href="{% url pybb_stick_topic topic.id %}">
58
<img src="{{MEDIA_URL}}/forum/img/en/stick_topic.png" height="25" alt ="{% trans "Stick Topic" %}" />
62
<a href="{% url pybb_open_topic topic.id %}">
63
<img src="{{MEDIA_URL}}/forum/img/en/open_topic.png" height="25" alt="{% trans "Open topic" %}" />
66
<a href="{% url pybb_close_topic topic.id %}">
67
<img src="{{MEDIA_URL}}/forum/img/en/close_topic.png" height="25" alt ="{% trans "Close Topic" %}" />
38
<a href="{% url pybb_unstick_topic topic.id %}">{% trans "Unstick topic" %}</a>
40
<a href="{% url pybb_stick_topic topic.id %}">{% trans "Stick topic" %}</a>
44
<a href="{% url pybb_open_topic topic.id %}">{% trans "Open topic" %}</a>
46
<a href="{% url pybb_close_topic topic.id %}">{% trans "Close topic" %}</a>
73
52
{% if user.is_authenticated %}
75
<a href="{% url pybb_delete_subscription topic.id %}?from_topic">
76
<img src="{{MEDIA_URL}}/forum/img/en/unsubscribe.png" height="25" alt ="{% trans "Unsubscribe" %}" />
79
<a href="{% url pybb_add_subscription topic.id %}">
80
<img src="{{MEDIA_URL}}/forum/img/en/subscribe.png" height="25" alt="{% trans "Subscribe" %}" /></a>
54
<a href="{% url pybb_delete_subscription topic.id %}?from_topic">{% trans "Unsubscribe" %}</a>
56
<a href="{% url pybb_add_subscription topic.id %}">{% trans "Subscribe" %}</a>
86
62
{% if user.is_authenticated %}
87
{% if not topic.closed %}
90
<div class="box_item_model border">
91
{% include "pybb/inlines/add_post_form.html" %}
63
{% if not topic.closed %}
64
{% include "pybb/add_post_form.html" %}