feat: add transfer form

This commit is contained in:
Herculino Trotta
2024-09-26 21:31:00 -03:00
parent f0ead20b57
commit ad080aa50b
4 changed files with 173 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
{% extends 'extends/offcanvas.html' %}
{% load i18n %}
{% load crispy_forms_tags %}
{% block title %}{% translate 'Adding transaction' %}{% endblock %}
{% block body %}
<form hx-post="{% url 'transactions_transfer' %}" hx-target="#generic-offcanvas" novalidate>
{% csrf_token %}
{% crispy form %}
</form>
{% endblock %}