feat: Better naming of edition pages

This commit is contained in:
sinavir 2025-03-17 17:28:32 +01:00 committed by catvayor
parent db8e016008
commit e62e0b82a8
Signed by: lbailly
GPG key ID: CE3E645251AC63F3
4 changed files with 27 additions and 4 deletions

View file

@ -4,7 +4,13 @@
{% block content %}
<section class="section">
<h1 class="title">{% trans "Création/Modification d'un club" %}</h1>
<h1 class="title">
{% if object %}
{% trans "Modification d'un club" %}
{% else %}
{% trans "Création d'un club" %}
{% endif %}
</h1>
<form action="" method="post">
{% csrf_token %}

View file

@ -4,7 +4,13 @@
{% block content %}
<section class="section">
<h1 class="title">{% trans "Création/Modification d'un exercice comptable" %}</h1>
<h1 class="title">
{% if object %}
{% trans "Modification d'un exercice comptable" %}
{% else %}
{% trans "Création d'un exercice comptable" %}
{% endif %}
</h1>
<form action="" method="post">
{% csrf_token %}

View file

@ -4,7 +4,12 @@
{% block content %}
<section class="section">
<h1 class="title">{% trans "Création/Modification de ligne de budget" %}</h1>
<h1 class="title">
{% if object %}
{% trans "Modification d'une ligne de budget" %}
{% else %}
{% trans "Création d'une ligne de budget" %}
{% endif %}
<form action="" method="post">
{% csrf_token %}

View file

@ -4,7 +4,13 @@
{% block content %}
<section class="section">
<h1 class="title">{% trans "Création/Modification de ligne de budget" %}</h1>
<h1 class="title">
{% if object %}
{% trans "Modification d'une ligne de budget" %}
{% else %}
{% trans "Création d'une ligne de budget" %}
{% endif %}
</h1>
<form action="" method="post">
{% csrf_token %}