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__'