view sat_templates/templates/bulma/photo/create.html @ 405:5016fb0ff62f default tip

Blog redesign: work in progress redesign of the blog. Some templates have been moved from chat to components to be re-used in other features, like blog here. Blog follows same global design as chat with a left panel to search/open blogs.
author Goffi <goffi@goffi.org>
date Wed, 21 May 2025 15:41:00 +0200
parents 11874a332add
children
line wrap: on
line source

{# create a new event #}

{% extends 'base/base.html' %}
{% import 'input/form.html' as form with context %}
{% import 'input/field.html' as field with context %}

{% block body %}
<section class="section">
    <h3 class='title is-3'>
        {% trans %}Create an event{% endtrans %}
    </h3>
    {% call form.form(class="form--paper form__panel--vertical") %}
        {{ field.text("name", _("album name"), required=true) }}
        {{ field.submit(_("Create a photo album")) }}
    {% endcall %}
</section>
{% endblock body %}