The updates for the customer dashboard cum accounts
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user