view sat_templates/templates/default/event/counter.html @ 167:6f05d4bdc58e

navigation, CSS: use "previous" and "next" instead of "older" and "newer" for previous and next pages
author Goffi <goffi@goffi.org>
date Fri, 11 Jan 2019 21:49:14 +0100
parents e9f0a4215e46
children
line wrap: on
line source

{% if days_left is defined %}
    {% if days_left > 0 %}
        <div class="event__counter box">
            {% trans %}
                {{days_left}} day left
            {% pluralize %}
                {{days_left}} days left
            {% endtrans %}
        </div>
    {% else %}
        <div class="event__counter box">{% trans %}the event is finished{% endtrans %}</div>
    {% endif %}

{% endif %}