basic stuff

This commit is contained in:
vabene1111
2018-01-31 23:40:16 +01:00
parent 598e0b1c69
commit c382e9df24
42 changed files with 1348 additions and 0 deletions

10
cookbook/urls.py Normal file
View File

@ -0,0 +1,10 @@
from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='index'),
path('new_recipe', views.new_recipe, name='new_recipe'),
path('new_category', views.new_category, name='new_category'),
path('new_keyword', views.new_keyword, name='new_keyword'),
]