From d8551052fdcd6dd85861af35812ba232d8a0cc6e Mon Sep 17 00:00:00 2001 From: Sylvain Gay Date: Thu, 2 May 2024 14:43:21 +0200 Subject: [PATCH] =?UTF-8?q?=E2=80=AFrenamed=20'categorie'=20->=E2=80=AF'?= =?UTF-8?q?=C3=A9tag=C3=A8re'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- inventory/models.py | 2 +- inventory/templates/inventory/category.html | 3 ++- inventory/templates/inventory/category_list.html | 4 ++-- inventory/templates/inventory/inventory.html | 4 ++-- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/inventory/models.py b/inventory/models.py index a8a2ce5..f7aa776 100644 --- a/inventory/models.py +++ b/inventory/models.py @@ -13,7 +13,7 @@ class Category(models.Model): class Meta: ordering = ["name"] - verbose_name = "catégorie" + verbose_name = "étagère" def __str__(self): return self.name diff --git a/inventory/templates/inventory/category.html b/inventory/templates/inventory/category.html index 30301c0..700b559 100644 --- a/inventory/templates/inventory/category.html +++ b/inventory/templates/inventory/category.html @@ -4,7 +4,8 @@

{{ category.name }}

{% with game_list=category.game_set.all %} -

Il y a {{ game_list|length }} jeu{{ game_list|pluralize:"x" }} dans cette catégorie :

+

Il y a {{ game_list|length }} jeu{{ game_list|pluralize:"x" }} dans cette +étagère :

{% for game in game_list %} {% include "./partials/game_item.html" %} {% endfor %} diff --git a/inventory/templates/inventory/category_list.html b/inventory/templates/inventory/category_list.html index 0176595..2a39175 100644 --- a/inventory/templates/inventory/category_list.html +++ b/inventory/templates/inventory/category_list.html @@ -1,9 +1,9 @@ {% extends "base.html" %} {% block "content" %} -

Liste des catégories

+

Liste des étagères

-

Il y a {{ paginator.count }} catégorie{{ paginator.count|pluralize }} de jeux :

+

Il y a {{ paginator.count }} étagère{{ paginator.count|pluralize }} de jeux :

{% include "partials/pagination.html" %} {% for category in category_list %} diff --git a/inventory/templates/inventory/inventory.html b/inventory/templates/inventory/inventory.html index f1129fc..a9d0219 100644 --- a/inventory/templates/inventory/inventory.html +++ b/inventory/templates/inventory/inventory.html @@ -12,9 +12,9 @@
- Liste des catégories + Liste des étagères

- Chaque jeu est rangé dans une unique catégorie comme en salle Jeux + Chaque jeu est rangé dans une unique étagère comme en salle Jeux