Mercurial > libervia-templates
annotate sat_templates/templates/bulma/forum/view.html @ 407:f45c311710b1 default tip
chat (message): Add origin of the message:
A tag is used to show origin of the message below header. A "bot" tag is also added is the
sender identifies itself as a bot.
rel 459
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 08 Jun 2025 17:31:38 +0200 |
parents | 3db3509cbad1 |
children |
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 | |
328
bfb0d5829728
bulma (forum): slight design improvment + new `New Topic` button
Goffi <goffi@goffi.org>
parents:
247
diff
changeset
|
11 <section class="section has-background-white"> |
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 | |
332
3db3509cbad1
bulma: fix items/pagination ordering in various places following ordering fix in Libervia/SàT Pubsub
Goffi <goffi@goffi.org>
parents:
328
diff
changeset
|
20 {{ navigation.prev_next(_("older articles"), _("newer articles")) }} |
230 | 21 {% endblock body %} |