annotate sat_templates/templates/bulma/invitation/welcome.html @ 374:5646df8bd391

bulma (call): calling mode improvments: - instead of a "switch" button, there are now 2 button with only an icon, one for video call and the other for audio call, they appear on the same row as the search bar - search item can now be extended using "call" blocks, and options are used - call search items don't show group, and now display an "extra" menu (3 dots menu) with a dropdown to select audio or video call.
author Goffi <goffi@goffi.org>
date Tue, 15 Aug 2023 17:12:18 +0200
parents cb08d92f181f
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
240
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
1 {% extends 'base/base.html' %}
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
2 {% import 'components/block.html' as block with context %}
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
3
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
4 {% block body %}
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
5 {{ icon_defs('file-image', 'exchange', 'calendar') }}
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
6 <section class="section">
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
7 <h1 class='title is-4'>{% trans %}Welcome {{name}}{% endtrans %}</h1>
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
8 <div class="message is-info">
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
9 <div class="message-body">
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
10 {% trans %}You have been invited to participate with the community, please choose an action below{% endtrans %}
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
11 </div>
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
12 </div>
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
13
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
14 {% if interests_map.event %}
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
15 {{ block.separator(_("events")) }}
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
16 {{block.interests_grid(interests_map.event, 'calendar')}}
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
17 {% endif %}
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
18 {% if interests_map.photos %}
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
19 {{ block.separator(_("photo albums")) }}
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
20 {{block.interests_grid(interests_map.photos, 'file-image')}}
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
21 {% endif %}
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
22 {% if interests_map.files %}
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
23 {{ block.separator(_("file sharing")) }}
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
24 {{block.interests_grid(interests_map.fis, 'exchange')}}
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
25 {% endif %}
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
26
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
27 {% if include_url is defined %}
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
28 <iframe id='include_main' src='{{include_url}}'></iframe>
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
29 {% endif %}
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
30 </section>
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
31
cb08d92f181f bulma (invitation/welcome): design for the welcome page
Goffi <goffi@goffi.org>
parents:
diff changeset
32 {% endblock body %}