Mercurial > libervia-templates
diff sat_templates/templates/bulma/photo/discover.html @ 245:10278ba367a2
bulma (photo/discover): design for the new theme + create button + delete button
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 19 Jun 2020 17:57:13 +0200 |
parents | 0e69b5843c2f |
children |
line wrap: on
line diff
--- a/sat_templates/templates/bulma/photo/discover.html Fri Jun 19 17:57:13 2020 +0200 +++ b/sat_templates/templates/bulma/photo/discover.html Fri Jun 19 17:57:13 2020 +0200 @@ -4,8 +4,24 @@ {% import 'input/field.html' as field with context %} {% block body %} -{{ icon_defs('file-image') }} +{{ icon_defs('file-image', 'trash-empty') }} <section class="section"> + <div class="content has-items-centered is-flex"> + {{ component.action_button(url_photos_new) }} + </div> + {% if interests is defined %} + <div class="message is-info"> + <div class="message-body"> + {% trans nb_interests=interests|length%} + You have currently {{nb_interests}} album in your personal list + {% pluralize %} + You have currently {{nb_interests}} albums in your personal list + {% endtrans %} + </div> + </div> + + {{block.interests_grid(interests, 'file-image')}} + {% endif %} <article class="message has-text-centered"> <div class="message-body"> {% trans %} @@ -13,20 +29,9 @@ {% endtrans %} </div> </article> + {% call form.form(class="form--single") %} + {{ field.text("jid", _("device full jid"), required=true)}} + {{ field.submit(_("Access")) }} + {% endcall %} </section> -{% if interests is defined %} - <p class="message--note"> - {% trans nb_interests=interests|length%} - You have currently {{nb_interests}} album in your personal list - {% pluralize %} - You have currently {{nb_interests}} albums in your personal list - {% endtrans %} - </p> - - {{block.interests_grid(interests, 'file-image')}} -{% endif %} -{% call form.form(class="form--single") %} - {{ field.text("jid", _("device full jid"), required=true)}} - {{ field.submit(_("Access")) }} -{% endcall %} {% endblock body %}