Mercurial > libervia-templates
annotate sat_templates/templates/bulma/forum/view.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 | 40fccd3b7cf0 |
children | bfb0d5829728 |
rev | line source |
---|---|
230 | 1 {% if not embedded %}{% extends 'base/base.html' %}{% endif %} |
2 {% set dates_format='relative' if single else 'short' %} | |
3 {% import 'components/avatar.html' as avatar with context %} | |
4 {% import 'blog/macros.html' as blog with context %} | |
5 {% import 'input/textbox.html' as textbox with context %} | |
6 {% import 'input/navigation.html' as navigation with context %} | |
7 | |
8 {% block body %} | |
9 | |
10 | |
11 <section class="section"> | |
247
40fccd3b7cf0
updated code to handle blog items following data structure change in backend/Libervia
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
12 {{ blog.show_items(blog_items["items"], expanded=true) }} |
230 | 13 </section> |
14 | |
15 <section class="section"> | |
16 {{- textbox.comment_or_login(service=service, node=node, placeholder=_("Enter your message here")) -}} | |
17 </section> | |
18 | |
19 | |
20 {{ navigation.prev_next(_("newer articles"), _("older articles")) }} | |
21 {% endblock body %} |