mirror of
https://github.com/ae-utbm/sith.git
synced 2026-09-23 12:44:22 +00:00
12 lines
247 B
Django/Jinja
12 lines
247 B
Django/Jinja
<form
|
|
hx-trigger="submit"
|
|
hx-post="{{ action }}"
|
|
hx-swap="outerHTML"
|
|
>
|
|
{% csrf_token %}
|
|
<div class="margin-bottom">
|
|
{{ form.as_p() }}
|
|
</div>
|
|
<input type="submit" class="btn btn-blue" value="{% trans %}Go{% endtrans %}"/>
|
|
</form>
|