annotate sat_templates/templates/default/components/common.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 7539d98e1d08
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
187
7539d98e1d08 components (menu): disable cache when importing "menu_labels":
Goffi <goffi@goffi.org>
parents: 183
diff changeset
1 {% import 'components/menu_labels.html' as ml with context %}
7539d98e1d08 components (menu): disable cache when importing "menu_labels":
Goffi <goffi@goffi.org>
parents: 183
diff changeset
2 {# we need to use "with context" to disable cache, needed for i18n #}
66
9834106678da base: menu implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
3
9834106678da base: menu implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
4 {% macro menu(menus, class='') %}
9834106678da base: menu implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
5 <nav class="menu {{class}}">
9834106678da base: menu implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
6 <ul>
9834106678da base: menu implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
7 {% for name,url in menus %}
166
178f55b825b7 small refactoring/redesign, better BEM integration:
Goffi <goffi@goffi.org>
parents: 164
diff changeset
8 <li><a class="menu_item menu_item--{{name}}" {{ {'href': url}|xmlattr }}>{{ml.label[name]}}</a></li>
66
9834106678da base: menu implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
9 {% endfor %}
9834106678da base: menu implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
10 </ul>
183
240bbac435f4 base: implemented language button:
Goffi <goffi@goffi.org>
parents: 166
diff changeset
11 {% if caller is defined %}
240bbac435f4 base: implemented language button:
Goffi <goffi@goffi.org>
parents: 166
diff changeset
12 {{ caller()}}
240bbac435f4 base: implemented language button:
Goffi <goffi@goffi.org>
parents: 166
diff changeset
13 {% endif %}
66
9834106678da base: menu implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
14 </nav>
9834106678da base: menu implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
15 {% endmacro %}