order cart payment update

added signals for order
This commit is contained in:
Parsa Nazer
2025-03-19 20:08:55 +03:30
parent 56f3387cc6
commit c649770941
6 changed files with 49 additions and 3 deletions
+8 -1
View File
@@ -241,4 +241,11 @@ class SecurityBreachAttemptModel(models.Model):
return f'تلاش نفوذ از {self.ip_address} در {self.city}, {self.country}'
class Meta:
verbose_name = "تلاش نفوذ"
verbose_name_plural = "تلاش‌های نفوذ"
verbose_name_plural = "تلاش‌های نفوذ"
# class NotifModel(models.Model):
# subject = models.CharField(max_length=100)
# description = models.TextField()
# def __str__(self):
# return f'{self.subject[:30]}'