Mercurial > libervia-templates
annotate sat_templates/templates/bulma/invitation/welcome.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 | cb08d92f181f |
children |
rev | line source |
---|---|
240
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
1 {% extends 'base/base.html' %} |
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
2 {% import 'components/block.html' as block with context %} |
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
3 |
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
4 {% block body %} |
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
5 {{ icon_defs('file-image', 'exchange', 'calendar') }} |
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
6 <section class="section"> |
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
7 <h1 class='title is-4'>{% trans %}Welcome {{name}}{% endtrans %}</h1> |
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
8 <div class="message is-info"> |
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
9 <div class="message-body"> |
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
10 {% trans %}You have been invited to participate with the community, please choose an action below{% endtrans %} |
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
11 </div> |
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
12 </div> |
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
13 |
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
14 {% if interests_map.event %} |
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
15 {{ block.separator(_("events")) }} |
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
16 {{block.interests_grid(interests_map.event, 'calendar')}} |
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
17 {% endif %} |
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
18 {% if interests_map.photos %} |
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
19 {{ block.separator(_("photo albums")) }} |
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
20 {{block.interests_grid(interests_map.photos, 'file-image')}} |
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
21 {% endif %} |
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
22 {% if interests_map.files %} |
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
23 {{ block.separator(_("file sharing")) }} |
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
24 {{block.interests_grid(interests_map.fis, 'exchange')}} |
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
25 {% endif %} |
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
26 |
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
27 {% if include_url is defined %} |
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
28 <iframe id='include_main' src='{{include_url}}'></iframe> |
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
29 {% endif %} |
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
30 </section> |
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
31 |
cb08d92f181f
bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
32 {% endblock body %} |