Added all the functionality of app and admin

This commit is contained in:
bobbyvish
2024-03-11 14:48:48 +05:30
parent 69dbc56374
commit fd4aef5a40
92 changed files with 8931 additions and 716 deletions

View File

@@ -0,0 +1,7 @@
from django import forms
from .models import PushNotification
class PushNotificationForm(forms.ModelForm):
class Meta:
model = PushNotification
fields = ('title', 'banner_image', 'message')