Mercurial > libervia-templates
annotate sat_templates/templates/bulma/components/menu_labels.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 | c98a0a4a3fd0 |
| children |
| rev | line source |
|---|---|
| 230 | 1 {# menu labels, map from menu names to labels #} |
| 2 {% set label = { | |
| 3 'login': _('Session') if profile else _('Log in'), | |
| 4 'blog': _('Blog'), | |
|
360
c98a0a4a3fd0
bulma: "call" template, first draft:
Goffi <goffi@goffi.org>
parents:
358
diff
changeset
|
5 'calls': _('Calls'), |
| 230 | 6 'forums': _('Forums'), |
| 7 'merge-requests': _('Merge requests'), | |
| 8 'merge-request_new': _('Create new merge request'), | |
|
298
1c330913ff13
bulma (tickets): renamed "tickets" to "lists"
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
9 'lists': _('Lists'), |
|
1c330913ff13
bulma (tickets): renamed "tickets" to "lists"
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
10 'list_items': _('List items'), |
|
1c330913ff13
bulma (tickets): renamed "tickets" to "lists"
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
11 'list_item_new': _('Create new list item'), |
| 230 | 12 'chat': _('Chat'), |
| 13 'files': _('Files sharing'), | |
|
358
271b38ccd217
bulma (calendar): calendar and its daily view, first draft
Goffi <goffi@goffi.org>
parents:
298
diff
changeset
|
14 'calendar': _('Calendar'), |
| 230 | 15 'events': _('Events'), |
| 16 'event_new': _('Create an event'), | |
| 17 'photos': _('Photos albums'), | |
| 18 'app': _('Application'), | |
| 19 } %} |
