comparison sat_templates/templates/bulma/forum/overview.html @ 413:0190a0d32909 default tip

Forum: Major redesign of forums: Forums have been redesigned. They follow the new general design with 2 or 3 panels, allowing to have directly a forum if one is found/set up, and a panel on the left to search/discover other ones. Categories have been rewritten to be usable with pubsub relationships, a XEP-0277 type node is used for topics, and each item has a comments node for the threads. The thread view is set in `forum/show_messages.html` template. It has a header with a search box and a button to (un)subscribe. Items are displayed with the same macros as for the blog items. Below a room is set for editor, tags and attachments. rel 463
author Goffi <goffi@goffi.org>
date Fri, 05 Sep 2025 21:54:09 +0200
parents c1d33d7e4b96
children
comparison
equal deleted inserted replaced
412:c1d33d7e4b96 413:0190a0d32909
1 {% extends 'base/base.html' %}
2
3 {% macro generate_forums(forums_data, level=0) %}
4 {% if level == 0 %}
5 <section class="section">
6 {% for forum in forums_data %}
7 <div class="box content has-text-centered has-background-info mt-4">
8 <h4 class="title has-text-white">{{ forum.title }}</h4>
9 {% if 'short-desc' in forum %}
10 <p class="subtitle is-size-7 is-italic has-text-white">{{ forum['short-desc'] }}</h5>
11 {% endif %}
12 </div>
13 {% if 'sub-forums' in forum %}
14 {{ generate_forums(forum['sub-forums'], level=level+1) }}
15 {% endif %}
16 {% endfor %}
17 </section>
18 {% else %}
19 <div class="forum forum__panel_{{panel_type}}">
20 {% for forum in forums_data %}
21 <div class="my-2 forum forum__cat_{{panel_type}} forum__level_{{level}}">
22 {% if 'http_url' in forum %}
23 <a href="{{forum['http_url']}}" class="box content x-is-hoverable">
24 {% else %}
25 <a class="box content">
26 {% endif %}
27 <h4 class="title">{{ forum.title }}</h4>
28 {% if 'short-desc' in forum %}
29 <p class="subtitle is-size-7 is-italic">{{ forum['short-desc'] }}</p>
30 {% endif %}
31 </a>
32 {% if 'sub-forums' in forum %}
33 {{ generate_forums(forum['sub-forums'], level=level+1) }}
34 {% endif %}
35 </div>
36 {% endfor %}
37 </div>
38 {% endif %}
39 {% endmacro %}
40
41 {% block body %}
42 {% if not forums %}
43 <div class="message">
44 <div class="message-body">{% trans %}No forums found on this server!{% endtrans %}</div>
45 </div>
46 {% else %}
47 <div class="container forums">
48 {{ generate_forums(forums) }}
49 </div>
50 {% endif %}
51 {% endblock body %}