view sat_templates/templates/default/forum/view.html @ 204:e9bbf4462ea8

css: misc changes - anchor links in list elements can now be displayed more obviously using "list__item--show-links" class - specific style for disabled button - adapted form styles to new "select" field - other small changes, see diff
author Goffi <goffi@goffi.org>
date Sun, 26 May 2019 22:09:49 +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 %}