view sat_templates/templates/default/forum/view.html @ 164:e9f0a4215e46

multi-sites handling (moved templates to "templates" sub-directory) + noscript styles handling.
author Goffi <goffi@goffi.org>
date Mon, 10 Sep 2018 08:53:33 +0200
parents sat_templates/default/forum/view.html@33c7ce833d3f
children 178f55b825b7
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 %}

{% block body %}

<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>
<nav class="prev_next_links">
    <ul>
        {% if newer_url is defined %}
            <li class="newer_items">
                <a href="{{newer_url}}">
                    <img src="{{media_path}}icons/tango/actions/32/go-previous.png">
                    {% trans %}newer messages{% endtrans %}
                </a>
            </li>
        {% endif %}
        {% if older_url is defined %}
            <li class="older_items">
                <a href="{{older_url}}">
                    <img src="{{media_path}}icons/tango/actions/32/go-next.png">
                    {% trans %}older messages{% endtrans %}
                </a>
            </li>
        {% endif %}
    </ul>
</nav>
{% endblock body %}