2016-11-09 18:32:23 +00:00
|
|
|
<div class="content__header">{{ title }}</div>
|
2016-11-12 01:52:51 +00:00
|
|
|
<div class="forum-list">
|
2016-07-29 19:31:36 +00:00
|
|
|
{% for forum in forum.forums %}
|
|
|
|
{% if forum.type == 1 %}
|
2016-11-02 18:58:51 +00:00
|
|
|
{% if forum.forums|length and forum.perms.view %}
|
2016-11-12 01:52:51 +00:00
|
|
|
<div class="forum-list__category">
|
|
|
|
{% if forum.type != 1 %}
|
|
|
|
Subforums
|
|
|
|
{% else %}
|
|
|
|
<a class="forum-list__category-link" href="{{ route('forums.forum', forum.id) }}">
|
|
|
|
{{ forum.name }}
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
2016-07-29 19:31:36 +00:00
|
|
|
</div>
|
|
|
|
{% for forum in forum.forums %}
|
2017-03-23 15:01:53 +00:00
|
|
|
{% include '@yuuno/forum/elements/forumEntry.twig' %}
|
2016-07-29 19:31:36 +00:00
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
{% else %}
|
2017-03-23 15:01:53 +00:00
|
|
|
{% include '@yuuno/forum/elements/forumEntry.twig' %}
|
2016-07-29 19:31:36 +00:00
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% if not forum.type and forum.id > 0 %}
|
2016-07-30 13:48:09 +00:00
|
|
|
{% set topics = forum.topics|batch(25) %}
|
2016-07-29 19:31:36 +00:00
|
|
|
|
2016-12-12 22:22:09 +00:00
|
|
|
{% set pagination_pages = topics %}
|
|
|
|
{% set pagination_url %}{{ route('forums.forum', forum.id) }}{% endset %}
|
2016-07-29 19:31:36 +00:00
|
|
|
|
2017-03-23 15:01:53 +00:00
|
|
|
{% include '@yuuno/forum/elements/forumBtns.twig' %}
|
2016-11-12 01:52:51 +00:00
|
|
|
|
2016-07-30 13:48:09 +00:00
|
|
|
{% if forum.topics %}
|
2016-11-12 01:52:51 +00:00
|
|
|
{% for topic in topics[get.page|default(1) - 1] %}
|
2017-03-23 15:01:53 +00:00
|
|
|
{% include '@yuuno/forum/elements/topicEntry.twig' %}
|
2016-11-12 01:52:51 +00:00
|
|
|
{% endfor %}
|
2016-07-29 19:31:36 +00:00
|
|
|
{% else %}
|
2016-12-04 14:55:53 +00:00
|
|
|
<h1 class="forum-list__empty">There are no posts in this forum!</h1>
|
2016-07-29 19:31:36 +00:00
|
|
|
{% endif %}
|
2016-11-12 01:52:51 +00:00
|
|
|
|
2017-03-23 15:01:53 +00:00
|
|
|
{% include '@yuuno/forum/elements/forumBtns.twig' %}
|
2016-07-29 19:31:36 +00:00
|
|
|
{% endif %}
|