view sat_templates/templates/bulma/list/create.html @ 348:789ebf39b2d8

i18n: Translated using Weblate (French) Currently translated at 100.0% (213 of 213 strings) Translation: Libervia/Templates Translate-URL: https://salut-a-toi.org/weblate/projects/libervia/templates/fr/
author Goffi <tmp-weblate_goffi.org@goffi.org>
date Thu, 18 Nov 2021 16:25:27 +0000
parents 877f01720036
children
line wrap: on
line source

{% extends 'base/base.html' %}
{% import 'components/block.html' as block with context %}

{% block body %}
{{ icon_defs(*icons_names) }}
<section class="section">
    <article class="message has-text-centered">
      <div class="message-body">
        {% trans %}
        Please select the type of list that you want to create
        {% endtrans %}
      </div>
    </article>
    <div class="columns">
        {% for tpl in lists_templates %}
            {{ block.icon_item(tpl.icon, tpl.name, tpl.url) }}
        {% endfor %}
    </div>
</section>
{% endblock body %}