From e5d585563002cb58c2dc14a00918c84decc08a89 Mon Sep 17 00:00:00 2001 From: Debasish Pradhan Date: Thu, 25 Jun 2026 08:51:06 +0530 Subject: [PATCH] Update forms.py --- restaurants/forms.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/restaurants/forms.py b/restaurants/forms.py index e69de29..c770165 100644 --- a/restaurants/forms.py +++ b/restaurants/forms.py @@ -0,0 +1,7 @@ +from django import forms +from .models import Book + +class BookingForm(forms.ModelForm): + class Meta: + model = Book + fields = '__all__'