From 1ae2a73e624bec53d2ced978744e8529d06d185d Mon Sep 17 00:00:00 2001 From: Parsa Nazer Date: Sat, 1 Feb 2025 18:41:42 +0330 Subject: [PATCH] dollor model verbose name --- backend/product/models.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/backend/product/models.py b/backend/product/models.py index 0c9af20..1863ca4 100644 --- a/backend/product/models.py +++ b/backend/product/models.py @@ -80,6 +80,9 @@ class DollorModel(models.Model): return self.defualt_price return price_in_usd + class Meta: + verbose_name = 'مدل دلار' + verbose_name_plural = 'مدل دلار' class ProductModel(models.Model):