Mercurial > libervia-templates
annotate sat_templates/templates/bulma/forum/overview.html @ 411:f7a434581872 default tip
chat: Add forward, rich editing and extra recipients:
- There is a new "forward" menu in message. For now, a simple prompt ask for recipient JID.
- A new "extra" menu is available next to input field. Inside there are 2 items for now:
add extra recipient, and toggle rich edit mode.
- Extra recipient option add a field to add an email-like "to", "cc" or "bcc" recipients.
- Rich edit let use rich styling such as bold, italic, underline, etc.
rel 461
| author | Goffi <goffi@goffi.org> |
|---|---|
| date | Fri, 04 Jul 2025 17:33:22 +0200 |
| parents | 1928ba66c194 |
| children |
| rev | line source |
|---|---|
| 230 | 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 %} | |
|
246
1928ba66c194
bulma: replaced custom styles by new spacing helpers
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
7 <div class="box content has-text-centered has-background-info mt-4"> |
| 230 | 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 %} | |
|
246
1928ba66c194
bulma: replaced custom styles by new spacing helpers
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
21 <div class="my-2 forum forum__cat_{{panel_type}} forum__level_{{level}}"> |
| 230 | 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 %} |
