pflaenz.li/pflaenzli/pflaenzli/templates/basic_form.html

16 lines
633 B
HTML
Raw Normal View History

2023-02-19 21:37:53 +01:00
{% extends 'base.html' %}
{% load crispy_forms_tags %}
{% block title %}{{ title }}{% endblock %}
{% block meta %}<meta name="description" content="{{ page_description }}">{% endblock %}
{% block content %}
2023-04-05 23:29:42 +02:00
<h1>{{ title }}</h1>
2023-02-19 23:56:05 +01:00
<form method="post" enctype="multipart/form-data" class="mb-5">
2023-02-19 21:37:53 +01:00
{% csrf_token %}
{{ form|crispy }}
2023-09-16 14:21:59 +02:00
{% if form_note %}<div class="mb-3">{{ form_note }}</div>{% endif %}
2023-05-18 15:04:26 +02:00
<button type="submit"
class="btn btn-pfl"
2023-09-15 12:07:58 +02:00
{% if umami_event %}data-umami-event="{{ umami_event }}"{% endif %}>{{ button_label }}</button>
2023-02-19 21:37:53 +01:00
</form>
{% endblock %}