view sat_templates/templates/default/event/counter.html @ 320:b9e04a8a45c3

bulma (blog): new publish template: This template let edit title, tags and body, and show a preview if JS is available.
author Goffi <goffi@goffi.org>
date Thu, 29 Apr 2021 16:30:02 +0200
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 %}