view sat_templates/templates/default/event/admin.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 f7d6ae06c42f
children aa37750c2617
line wrap: on
line source

{% extends 'base/base.html' %}
{% import 'input/form.html' as form with context %}
{% import 'input/field.html' as field with context %}
{% import 'input/textbox.html' as textbox with context %}

{% block body %}
<div class='invitation_header box'>
    <h1>{% trans name=event.name %}{{name}} administration{% endtrans %}</h1>
    {% if event.image is defined %}
        <p><img class='event__picture' src="{{event.image}}"></p>
    {% endif %}
    {% if event.description is defined %}
        <p>{{event.description}}</p>
    {% endif %}
</div>

{% include 'event/counter.html' %}

<div class="tab__container">
    <div class="tab__header">
        <ul>
            <li class="tab__btn state_clicked" onclick='tab_select(this, "tab_guests")'>{% trans %}Invitees{% endtrans %}</li>
            <li class="tab__btn" onclick='tab_select(this,"tab_invitations")'>{% trans %}Invite people{% endtrans %}</li>
            <li class="tab__btn" onclick='tab_select(this,"tab_new_post")'>{% trans %}Write a blog post{% endtrans %}</li>
            <li class="tab__btn" onclick='tab_select(this,"tab_blog")'>{% trans %}Read event blog{% endtrans %}</li>
        </ul>
    </div>

    <div class="tab__page state_clicked" id="tab_guests">
        {% if invitees %}
            <table class="table--main">
            <tr>
                <th>{% trans %}name{% endtrans %}</th>
                <th>{% trans %}coming?{% endtrans %}</th>
                <th>{% trans %}guests{% endtrans %}</th>
            {% for name, data in invitees.items() %}
                <tr>
                    <td>{{name}}</td>
                    <td>{{data.attend|default('')}}</td>
                    {% if data.attend == 'no' %}
                        <td>&nbsp;</td>
                    {% else %}
                        <td>{{data.guests|default(0)}}</td>
                    {% endif %}
                </tr>
            {% endfor %}
            <tr>
                <td colspan=2 class="table__total">{% trans %}total expected{% endtrans %}</td>
                <td class="table__total_value">{{invitees_guests|default('0')}}</td>
            </tr>
            </table>
        {% else %}
            <p class="message--info">{% trans %}No invitee has answered yet{% endtrans %}</p>
        {% endif %}
    </div>


    <div class="tab__page" id="tab_invitations">
        {% call form.form(class="form--paper form__panel--vertical form__panel--center") %}
            {{ textbox.head(event_service, event_node, 'event') }}
            {{ field.meta('event_id', event_id) }}
            {{ field.textarea("jids",
                              _("enter here a list of jid (one per line) to invite"),
                              class="form__field--medium") }}
            {{ field.textarea("emails",
                              _("enter here a list of emails addresses (one per line) to invite"),
                              class="form__field--medium") }}
            {{ field.submit(_("Invite people")) }}
        {% endcall %}
    </div>

    <div class="tab__page" id="tab_new_post">
        {% call form.form(class="form--paper form__panel--vertical form__panel--center") %}
            {{ textbox.head(service, node, 'blog') }}
            {{ field.text("title",
                          _("title"),
                          class="form__field--big") }}
            {{ field.textarea("body",
                              _("body"),
                              class="form__field--big") }}
            {{ field.text("language",
                          _("language"),
                          class="form__field--tiny") }}
            {{ field.checkbox("comments",
                              _("allow comments"),
                              checked=true) }}
            {{ field.submit(_("send")) }}
        {% endcall %}
    </div>

    <div class="tab__page" id="tab_blog">
        {% if items is defined %}
            {% include 'blog/articles.html' %}
        {% endif %}
    </div>

</div>

{% endblock body %}