generated from 2martens/django-template
Renamed app and Django template
This commit is contained in:
@ -35,7 +35,7 @@ ALLOWED_HOSTS = ['localhost', '127.0.0.1', '[::1]']
|
||||
# Application definition
|
||||
|
||||
INSTALLED_APPS = [
|
||||
'app.apps.DjangoTemplateConfig', # TODO: change to your app config class
|
||||
'food_planner.apps.FoodPlannerConfig',
|
||||
'django.contrib.admin',
|
||||
'django.contrib.auth',
|
||||
'django.contrib.contenttypes',
|
||||
|
||||
@ -17,11 +17,11 @@ Including another URLconf
|
||||
from django.contrib import admin
|
||||
from django.urls import include
|
||||
from django.urls import path
|
||||
from app import views
|
||||
from food_planner import views
|
||||
|
||||
urlpatterns = [
|
||||
path('admin/', admin.site.urls),
|
||||
path('app/', include('app.urls')),
|
||||
path('accounts/', include('app.account_urls')),
|
||||
path('app/', include('food_planner.urls')),
|
||||
path('accounts/', include('food_planner.account_urls')),
|
||||
path('', views.index)
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user