recipes view

This commit is contained in:
vabene1111
2019-11-14 01:01:14 +01:00
parent ffc5b3347e
commit b725ee6b6a
7 changed files with 33 additions and 3 deletions

View File

@ -8,6 +8,8 @@ urlpatterns = [
path('', views.index, name='index'),
path('test', views.test, name='test'),
path('view/recipe/<int:pk>', views.recipe_view, name='view_recipe'),
path('new/recipe/', new.RecipeCreate.as_view(), name='new_recipe'),
path('new/recipe_import/<int:import_id>/', new.create_new_external_recipe, name='new_recipe_import'),
path('new/keyword/', new.KeywordCreate.as_view(), name='new_keyword'),