generated from 2martens/django-template
Renamed app and Django template
This commit is contained in:
11
food_planner/urls.py
Normal file
11
food_planner/urls.py
Normal file
@ -0,0 +1,11 @@
|
||||
# coding=utf-8
|
||||
from django.urls import path
|
||||
|
||||
from . import views
|
||||
|
||||
app_name = 'app'
|
||||
urlpatterns = [
|
||||
path('', views.index, name='index'),
|
||||
path('legal-notice/', views.legal, name='legal'),
|
||||
path('privacy/', views.privacy, name='privacy'),
|
||||
]
|
||||
Reference in New Issue
Block a user