The updates for the customer dashboard cum accounts

This commit is contained in:
Vivek
2025-12-09 03:59:57 +05:30
parent 08a89a1212
commit 24355ecdf5
38 changed files with 1057 additions and 16 deletions

View File

@@ -2,6 +2,7 @@ from django.db import models
class EventType(models.Model):
event_type = models.CharField(max_length=50, null=False, blank=False)
event_type_icon = models.ImageField(upload_to='event_type_icons/', null=True, blank=True)
def __str__(self):
return self.event_type