Mercurial > libervia-templates
view sat_templates/templates/default/forum/view.html @ 249:60bf3e45d7b2
bulma (input/field): don't use kwargs anymore:
`**kwargs` syntax is not supported by `nunjucks`. To work around this, most important
arguments have been added directly to macros, and an extra `attrs` argument can be used
for others.
author | Goffi <goffi@goffi.org> |
---|---|
date | Thu, 16 Jul 2020 09:08:34 +0200 |
parents | 178f55b825b7 |
children |
line wrap: on
line source
{% if not embedded %}{% extends 'base/base.html' %}{% endif %} {% set dates_format='relative' if single else 'short' %} {% import 'blog/macros.html' as blog with context %} {% import 'input/textbox.html' as textbox with context %} {% import 'input/navigation.html' as navigation with context %} {% block body %} {{ icon_defs('angle-double-left', 'angle-double-right') }} <div id="blog_items"> {{ blog.show_items(items, expanded=true) }} </div> <div class="forum_topic_answer"> {{- textbox.comment_or_login(service=service, node=node, placeholder=_("Enter your message here")) -}} </div> {{ navigation.prev_next(_("newer articles"), _("older articles")) }} {% endblock body %}