diff --git a/recipes/forms.py b/recipes/forms.py index 1b322ac..6af1420 100644 --- a/recipes/forms.py +++ b/recipes/forms.py @@ -4,8 +4,6 @@ from .models import Recipe, Version, Ingredient class VersionForm(ModelForm): recipe_id: int - use_user_for_author = BooleanField(initial=True, label='I am the author', required=False) - class Meta: model = Version fields = ['label', 'slug', 'body', 'alternative_author'] diff --git a/recipes/templates/add-version.html b/recipes/templates/add-version.html index b508688..e67d86b 100644 --- a/recipes/templates/add-version.html +++ b/recipes/templates/add-version.html @@ -15,26 +15,6 @@