Second updates

This commit is contained in:
Vivek P Prakash
2025-11-28 03:11:38 +05:30
parent aa40080012
commit d3cc7eb47e
18 changed files with 758 additions and 149 deletions

View File

@@ -1,7 +1,11 @@
from django import forms
from .models import EventType
class EventTypeForm(forms.ModelForm):
class Meta:
model = EventType
fields = ['event_type']
widgets = {
'event_type': forms.TextInput(attrs={'class': 'form-control'}),
}