mirror of
https://github.com/rjNemo/villafleurie
synced 2026-06-06 02:16:47 +00:00
* crete setting module to split prod and dev configs * fix calendar midmatch * lint imports using isort * doc: add doctrings
12 lines
355 B
Python
12 lines
355 B
Python
from django.conf.urls import include
|
|
from django.contrib import admin
|
|
from django.urls import path
|
|
|
|
urlpatterns = [
|
|
# change admin path for security purposes
|
|
path('dashboard/', admin.site.urls),
|
|
path('', include('rental.urls', namespace='rental'))
|
|
]
|
|
|
|
handler500 = 'rental.views.errors.handler500'
|
|
handler404 = 'rental.views.errors.handler404'
|