generated from 2martens/django-template
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
350 B
12 lines
350 B
# coding=utf-8 |
|
from django.urls import path |
|
|
|
from . import views |
|
|
|
app_name = 'food_planner' |
|
urlpatterns = [ |
|
path('', views.index, name='index'), |
|
path('legal-notice/', views.legal, name='legal'), |
|
path('privacy/', views.privacy, name='privacy'), |
|
path('mealplans/<int:user_id>/<str:mealplan_title>/', views.mealplan, name='mealplan'), |
|
]
|
|
|