2017-01-21 02:42:06 +00:00
|
|
|
{% extends "core/base.jinja" %}
|
2017-01-28 23:16:41 +00:00
|
|
|
{% from 'forum/macros.jinja' import display_forum, display_topic %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
{{ forum }}
|
|
|
|
{% endblock %}
|
2017-01-21 02:42:06 +00:00
|
|
|
|
|
|
|
{% block content %}
|
2017-05-20 10:40:30 +00:00
|
|
|
<div>
|
2017-02-24 03:37:01 +00:00
|
|
|
<a href="{{ url('forum:main') }}">{% trans %}Forum{% endtrans %}</a>
|
2017-03-15 17:35:15 +00:00
|
|
|
{% for f in forum.get_parent_list()|reverse %}
|
2017-01-21 03:19:15 +00:00
|
|
|
> <a href="{{ f.get_absolute_url() }}">{{ f }}</a>
|
|
|
|
{% endfor %}
|
|
|
|
> <a href="{{ forum.get_absolute_url() }}">{{ forum }}</a>
|
2017-05-20 10:40:30 +00:00
|
|
|
</div>
|
|
|
|
<div id="forum">
|
2017-01-21 02:42:06 +00:00
|
|
|
<h3>{{ forum.name }}</h3>
|
2017-01-28 19:58:54 +00:00
|
|
|
<p>
|
|
|
|
{% if user.is_in_group(settings.SITH_GROUP_FORUM_ADMIN_ID) or user.is_in_group(settings.SITH_GROUP_COM_ADMIN_ID) %}
|
2017-02-24 03:37:01 +00:00
|
|
|
<a href="{{ url('forum:new_forum') }}?parent={{ forum.id }}">{% trans %}New forum{% endtrans %}</a> <br/>
|
2017-01-28 19:58:54 +00:00
|
|
|
{% endif %}
|
2017-02-24 03:37:01 +00:00
|
|
|
<a href="{{ url('forum:new_topic', forum_id=forum.id) }}">{% trans %}New topic{% endtrans %}</a>
|
2017-01-28 19:58:54 +00:00
|
|
|
</p>
|
2017-02-24 14:55:50 +00:00
|
|
|
{% if forum.children.exists() %}
|
|
|
|
<div>
|
|
|
|
<div class="ib w_big">
|
2017-02-24 16:22:13 +00:00
|
|
|
{% trans %}Title{% endtrans %}
|
2017-02-24 14:55:50 +00:00
|
|
|
</div>
|
|
|
|
<div class="ib w_small">
|
|
|
|
<div class="ib w_medium">
|
2017-02-24 16:22:13 +00:00
|
|
|
{% trans %}Topics{% endtrans %}
|
2017-02-24 14:55:50 +00:00
|
|
|
</div>
|
|
|
|
<div class="ib w_small">
|
2017-02-24 16:22:13 +00:00
|
|
|
{% trans %}Last message{% endtrans %}
|
2017-02-24 14:55:50 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-05-20 10:40:30 +00:00
|
|
|
{{ display_forum(forum, user, True) }}
|
2017-01-21 02:42:06 +00:00
|
|
|
{% for f in forum.children.all() %}
|
2017-01-28 19:58:54 +00:00
|
|
|
{{ display_forum(f, user) }}
|
2017-01-21 02:42:06 +00:00
|
|
|
{% endfor %}
|
2017-02-24 14:55:50 +00:00
|
|
|
{% endif %}
|
|
|
|
{% if topics %}
|
|
|
|
<div>
|
|
|
|
<div class="ib w_medium">
|
2017-02-24 16:22:13 +00:00
|
|
|
{% trans %}Title{% endtrans %}
|
2017-02-24 14:55:50 +00:00
|
|
|
</div>
|
|
|
|
<div class="ib w_medium">
|
|
|
|
<div class="ib w_small">
|
2017-02-24 16:22:13 +00:00
|
|
|
{% trans %}Author{% endtrans %}
|
2017-02-24 14:55:50 +00:00
|
|
|
</div>
|
|
|
|
<div class="ib w_medium">
|
2017-02-24 16:22:13 +00:00
|
|
|
{% trans %}Messages{% endtrans %}
|
2017-02-24 14:55:50 +00:00
|
|
|
</div>
|
|
|
|
<div class="ib w_small">
|
2017-02-24 16:22:13 +00:00
|
|
|
{% trans %}Last message{% endtrans %}
|
2017-02-24 14:55:50 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-01-21 11:28:32 +00:00
|
|
|
{% for t in topics %}
|
2017-01-28 23:16:41 +00:00
|
|
|
{{ display_topic(t, user) }}
|
2017-01-21 02:42:06 +00:00
|
|
|
{% endfor %}
|
2017-05-20 10:40:30 +00:00
|
|
|
<p style="text-align: right; background: #d8e7f3;">
|
|
|
|
{% for p in topics.paginator.page_range %}
|
|
|
|
<span class="ib" style="background: {% if p == topics.number %}white{% endif %}; margin: 0;"><a href="?topic_page={{ p }}">{{ p }}</a></span>
|
|
|
|
{% endfor %}
|
|
|
|
</p>
|
2017-02-24 14:55:50 +00:00
|
|
|
{% endif %}
|
2017-05-20 10:40:30 +00:00
|
|
|
</div>
|
2017-01-21 02:42:06 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
|