Corrige les fautes de français dans le projet

This commit is contained in:
skylanix
2025-08-21 22:27:54 +02:00
committed by skylanix
parent b0311fb425
commit b83cd8ff5b
5 changed files with 30 additions and 26 deletions

View File

@@ -6,15 +6,15 @@
<table>
<thead>
<tr>
<th class="table_td">Text</th>
<th class="table_td">Action</th>
<th>Texte</th>
<th>Action</th>
</tr>
</thead>
<tbody>
{% for humeur in humeurs %}
<tr>
<td class="table_td">{{humeur.text}}</td>
<td class="table_td"><a href="{{ url_for('delHumeur', id = humeur.id) }}" onclick="return confirm('Êtes-vous sûr de vouloir supprimer cette humeur ?')">Supprimer</a></td>
<td>{{humeur.text}}</td>
<td><a href="{{ url_for('delHumeur', id = humeur.id) }}" onclick="return confirm('Êtes-vous sûr de vouloir supprimer cette humeur ?')">Supprimer</a></td>
</tr>
{% endfor %}
</tbody>
@@ -22,7 +22,7 @@
<h2>Ajouter une humeur</h2>
<form action="{{ url_for('addHumeur') }}" method="POST">
<label for="text">Text</label>
<label for="text">Texte</label>
<input name="text" type="text" />
<input type="Submit" value="Ajouter">
</form>