view sat_templates/templates/default/event/overview.html @ 230:0e69b5843c2f

theme: bulma theme first draft: This theme uses the Bulma CSS framework, Brython to handle the menu on touch devices, and Sass to customize Bulma. CSS default fallbacks are disabled as Bulma uses its own naming conventions, and default fallbacks would lead to hard to debug conflicts. `common.js` has been slightly improved to handle custom classed in `tab_select` The theme is not complete yet, but it is functional.
author Goffi <goffi@goffi.org>
date Tue, 19 May 2020 00:02:34 +0200
parents 03c8fd941c0c
children
line wrap: on
line source

{# overview of current events

    @variable item(xmlui_item): ticket to display
    @variable comments(data_object.BlogItems): comments of the ticket
    @variable comments_service(unicode): service for adding comments
    @variable comments_node(unicode): node for adding comments
#}

{% set category_menu = [('event_new', url_event_new)] %}
{% if not embedded %}{% extends 'base/base.html' %}{% endif %}
{% import 'components/block.html' as block with context %}

{% block body %}
{{ icon_defs('calendar') }}
<div class="box message--info">
    <p>{% trans %}There is not events discovery yet, this will come in the future.{% endtrans %}</p>
</div>
{% if events is defined %}
    <p class="message--note">
        {% trans nb_events=events|length%}
            You have currently {{nb_events}} event in your personal list
        {% pluralize %}
            You have currently {{nb_events}} events in your personal list
        {% endtrans %}
    </p>

    {{block.interests_grid(events, 'calendar')}}

{% endif %}
{% endblock body %}