feat: rename transactions' add and edit form

This commit is contained in:
Herculino Trotta
2024-09-27 17:51:11 -03:00
parent 69748f75ce
commit 0198155af1
2 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
{% load i18n %}
{% load crispy_forms_tags %}
{% block title %}{% translate 'Adding transaction' %}{% endblock %}
{% block title %}{% translate 'New transaction' %}{% endblock %}
{% block body %}
<form hx-post="{% url 'transaction_add' %}" hx-target="#generic-offcanvas" novalidate>

View File

@@ -2,7 +2,7 @@
{% load i18n %}
{% load crispy_forms_tags %}
{% block title %}{% translate 'Editing transaction' %}{% endblock %}
{% block title %}{% translate 'Edit transaction' %}{% endblock %}
{% block body %}
<form hx-post="{% url 'transaction_edit' transaction_id=transaction.id %}" hx-target="#generic-offcanvas" novalidate>