Files
2024-11-12 13:02:33 -03:00

12 lines
328 B
HTML

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