mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 12:18:45 -05:00
11 lines
302 B
Python
11 lines
302 B
Python
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'),
|
|
]
|