added simple entry mode to shopping

This commit is contained in:
vabene1111
2021-02-03 19:38:09 +01:00
parent 3afd18ccdc
commit bcd2e44493
6 changed files with 80 additions and 9 deletions

View File

@ -88,6 +88,7 @@ urlpatterns = [
path('api/plan-ical/<slug:from_date>/<slug:to_date>/', api.get_plan_ical, name='api_get_plan_ical'),
path('api/recipe-from-url/', api.recipe_from_url, name='api_recipe_from_url'),
path('api/backup/', api.get_backup, name='api_backup'),
path('api/ingredient-from-string/', api.ingredient_from_string, name='api_ingredient_from_string'),
path('dal/keyword/', dal.KeywordAutocomplete.as_view(), name='dal_keyword'),
path('dal/food/', dal.IngredientsAutocomplete.as_view(), name='dal_food'),