Mercurial > libervia-templates
annotate sat_templates/templates/bulma/forum/overview.html @ 295:1de599c5a68f
bulma (base): loading screen:
when the `loading_screen` variable is set before extending `base/base.html`, a loading
modal is shown (and must be removed via JavaScript). This avoids the user to try to use an
interface which is not reactive or working normally because JS is not fully loaded yet.
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 27 Nov 2020 12:24:03 +0100 |
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 %} |