mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-07-05 12:31:39 +02:00
17 lines
474 B
HTML
17 lines
474 B
HTML
{% extends 'extends/offcanvas.html' %}
|
|
{% load i18n %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block title %}{% translate 'Transaction attachments' %}{% endblock %}
|
|
|
|
{% block body %}
|
|
<form hx-post="{% url 'transaction_attachments' transaction_id=transaction.id %}"
|
|
hx-target="#generic-offcanvas"
|
|
hx-swap="innerHTML"
|
|
enctype="multipart/form-data"
|
|
novalidate>
|
|
{% crispy form %}
|
|
</form>
|
|
|
|
{% include 'transactions/fragments/attachments.html' %}
|
|
{% endblock %} |