From 10753756a76853768ba064c79974ec17178e8785 Mon Sep 17 00:00:00 2001 From: Debasish Pradhan Date: Thu, 25 Jun 2026 08:38:25 +0530 Subject: [PATCH] Add ReservationForm for Restaurant model --- restaurants/forms.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/restaurants/forms.py b/restaurants/forms.py index e69de29..8d5fb56 100644 --- a/restaurants/forms.py +++ b/restaurants/forms.py @@ -0,0 +1,7 @@ +from django import forms +from .models import Restaurant + +class ReservationForm(forms.ModelForm): + class Meta: + model = Restaurant + fields = '__all__'