mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-19 16:21:20 +01:00
14 lines
368 B
HTML
14 lines
368 B
HTML
{% extends 'extends/offcanvas.html' %}
|
|
{% load i18n %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block title %}{% translate 'Edit quick transaction' %}{% endblock %}
|
|
|
|
{% block body %}
|
|
<form hx-post="{% url 'quick_transaction_edit' quick_transaction_id=quick_transaction.id %}"
|
|
hx-target="#generic-offcanvas"
|
|
novalidate>
|
|
{% crispy form %}
|
|
</form>
|
|
{% endblock %}
|