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