Files
WYGIWYH/app/templates/dca/fragments/entry/edit.html
T
2024-11-12 11:40:50 -03:00

12 lines
322 B
HTML

{% extends 'extends/offcanvas.html' %}
{% load i18n %}
{% load crispy_forms_tags %}
{% block title %}{% translate 'Edit DCA entry' %}{% endblock %}
{% block body %}
<form hx-post="{% url 'exchange_rate_edit' pk=exchange_rate.id %}" hx-target="#generic-offcanvas" novalidate>
{% crispy form %}
</form>
{% endblock %}