mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-25 19:01:24 +01:00
19 lines
613 B
HTML
19 lines
613 B
HTML
{% extends 'extends/offcanvas.html' %}
|
|
{% load i18n %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block title %}{% translate 'Bulk Editing' %}{% endblock %}
|
|
|
|
{% block body %}
|
|
<p>{% trans 'Editing' %} {{ transactions|length }} {% trans 'transactions' %}
|
|
<hr class="hr my-3" />
|
|
<div class="editing-transactions">
|
|
{% for transaction in transactions %}
|
|
<input type="hidden" name="transactions" value="{{ transaction.id }}"/>
|
|
{% endfor %}
|
|
</div>
|
|
<form hx-post="{% url 'transactions_bulk_edit' %}" hx-target="#generic-offcanvas" hx-include=".editing-transactions" novalidate>
|
|
{% crispy form %}
|
|
</form>
|
|
{% endblock %}
|