view sat_templates/templates/default/input/navigation.html @ 165:9e8d9d754337

base/base.html: don't show menu if main_menu is defined but none or empty
author Goffi <goffi@goffi.org>
date Fri, 14 Sep 2018 19:49:15 +0200
parents e9f0a4215e46
children 178f55b825b7
line wrap: on
line source

{% macro prev_next(prev_label=_("newer"), next_label=_("older")) %}
    <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">
                        {{prev_label}}
                    </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">
                        {{next_label}}
                    </a>
                </li>
            {% endif %}
        </ul>
    </nav>
{% endmacro %}