feat: Better naming of edition pages
This commit is contained in:
parent
db8e016008
commit
e62e0b82a8
4 changed files with 27 additions and 4 deletions
|
@ -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 %}
|
||||
|
||||
|
|
|
@ -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 %}
|
||||
|
||||
|
|
|
@ -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 %}
|
||||
|
||||
|
|
|
@ -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 %}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue