mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-03 13:19:16 -05:00
removed non internal recipes from shopping
This commit is contained in:
@@ -75,7 +75,7 @@ class InternalRecipeForm(forms.ModelForm):
|
|||||||
|
|
||||||
class ShoppingForm(forms.Form):
|
class ShoppingForm(forms.Form):
|
||||||
recipe = forms.ModelMultipleChoiceField(
|
recipe = forms.ModelMultipleChoiceField(
|
||||||
queryset=Recipe.objects.all(),
|
queryset=Recipe.objects.filter(internal=True).all(),
|
||||||
widget=MultiSelectWidget
|
widget=MultiSelectWidget
|
||||||
)
|
)
|
||||||
markdown_format = forms.BooleanField(
|
markdown_format = forms.BooleanField(
|
||||||
|
|||||||
Reference in New Issue
Block a user