# HG changeset patch # User Goffi # Date 1592582233 -7200 # Node ID cb08d92f181fa6f32e29c9b295c4397cb2388e0d # Parent 61f3efd69fc31ac73f089873d21309efc5a5e9cf bulma (invitation/welcome): design for the welcome page diff -r 61f3efd69fc3 -r cb08d92f181f sat_templates/templates/bulma/invitation/welcome.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sat_templates/templates/bulma/invitation/welcome.html Fri Jun 19 17:57:13 2020 +0200 @@ -0,0 +1,32 @@ +{% extends 'base/base.html' %} +{% import 'components/block.html' as block with context %} + +{% block body %} +{{ icon_defs('file-image', 'exchange', 'calendar') }} +
+

{% trans %}Welcome {{name}}{% endtrans %}

+
+
+ {% trans %}You have been invited to participate with the community, please choose an action below{% endtrans %} +
+
+ + {% if interests_map.event %} + {{ block.separator(_("events")) }} + {{block.interests_grid(interests_map.event, 'calendar')}} + {% endif %} + {% if interests_map.photos %} + {{ block.separator(_("photo albums")) }} + {{block.interests_grid(interests_map.photos, 'file-image')}} + {% endif %} + {% if interests_map.files %} + {{ block.separator(_("file sharing")) }} + {{block.interests_grid(interests_map.fis, 'exchange')}} + {% endif %} + + {% if include_url is defined %} + + {% endif %} +
+ +{% endblock body %}