mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-30 06:02:10 +02:00
12 lines
352 B
HTML
12 lines
352 B
HTML
{% extends 'extends/offcanvas.html' %}
|
|
{% load i18n %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block title %}{% translate 'Edit transaction rule' %}{% endblock %}
|
|
|
|
{% block body %}
|
|
<form hx-post="{% url 'transaction_rule_edit' transaction_rule_id=transaction_rule.id %}" hx-target="#generic-offcanvas" novalidate>
|
|
{% crispy form %}
|
|
</form>
|
|
{% endblock %}
|