villafleurie/villafleurie/urls.py
Ruidy 780188e7d6
Refactor (#7)
* crete setting module to split prod and dev configs

* fix calendar midmatch

* lint imports using isort

* doc: add doctrings
2020-07-31 08:02:10 +02:00

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'