comparison sat_templates/templates/bulma/invitation/manager.html @ 260:caadb06854a0

bulma (invitation): invitation manager first draft
author Goffi <goffi@goffi.org>
date Sat, 01 Aug 2020 17:01:31 +0200
parents
children dbdaf1d7442b
comparison
equal deleted inserted replaced
259:a18374320194 260:caadb06854a0
1 {% import 'input/form.html' as form with context %}
2 {% import 'input/field.html' as field with context %}
3 {% import 'input/textbox.html' as textbox with context %}
4 <div class="wrapper">
5 <div class="panel_wrapper click_to_close">
6 <div class="invitation_manager_side_panel">
7 <section class="section">
8 <div class="message is-info">
9 <div class="message-body">
10 {% trans %}in this panel, you can manage people who can access this album, and send invitations{% endtrans %}
11 </div>
12 </div>
13 </section>
14 <section class="section">
15 <div id="affiliations">
16 <h4 class="title is-4">{% trans %}people who can access this album{% endtrans %}</h4>
17 </div>
18 </section>
19 <section class="section">
20 <div id="invitation_panel">
21 <h4 class="title is-4">{% trans %}invite people{% endtrans %}</h4>
22 <div id="invitation_notifications"></div>
23 {% call form.form(id="invitation_form") %}
24 {{ textbox.head(event_service, event_node, 'event') }}
25 {{ field.meta('event_id', event_id) }}
26 {{ field.textarea("jids",
27 _("enter here a list of jid (one per line) to invite")
28 )
29 }}
30 {{ field.textarea("emails",
31 _("enter here a list of emails addresses (one per line) to invite")
32 )
33 }}
34 {{ field.submit(_("Invite people"), id="invitation_submit") }}
35 {% endcall %}
36 </div>
37 </section>
38
39 </div>
40 </div>
41 </div>