Files
brewery-website/config/urls.py
2024-06-05 10:27:13 -04:00

15 lines
565 B
Python

from django.urls import include, path
from django.contrib import admin
from .views import home
urlpatterns = [
path('admin/doc/', include('django.contrib.admindocs.urls')),
path('admin/', admin.site.urls),
path('account/', include('django.contrib.auth.urls')),
path('yeast/', include(('yeast.urls', 'yeast'))),
path('beer/', include(('beer.urls', 'beer'))),
path('equipment/', include(('equipment.urls', 'equipment'))),
#path('change-password/', ChangePasswordView.as_view(), name='change_password'),
path('', home, name="home"),
]