mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 04:10:06 -05:00
basic stuff
This commit is contained in:
10
cookbook/urls.py
Normal file
10
cookbook/urls.py
Normal 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'),
|
||||
]
|
||||
Reference in New Issue
Block a user