mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-04-23 09:08:39 +02:00
17 lines
597 B
HTML
17 lines
597 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_dry_run_updated' pk=rule.id %}" hx-target="#generic-offcanvas"
|
|
hx-indicator="#dry-run-updated-result, closest form" class="show-loading" novalidate>
|
|
{% crispy form %}
|
|
</form>
|
|
<hr>
|
|
<div id="dry-run-updated-result" class="show-loading">
|
|
{% include 'rules/fragments/transaction_rule/dry_run/visual.html' with logs=logs results=results %}
|
|
</div>
|
|
{% endblock %}
|