mirror of
https://github.com/jazzband/django-configurations.git
synced 2026-03-16 22:20:27 +00:00
- Drop django==1.9 as it reached end of life - Drop python2.6, python3.3, and bring python3.6 - Bring django-2.0 in the matrix as expected failure until we add its support
9 lines
215 B
Python
9 lines
215 B
Python
from django.conf.urls import include, url
|
|
|
|
# Uncomment the next two lines to enable the admin:
|
|
from django.contrib import admin
|
|
admin.autodiscover()
|
|
|
|
urlpatterns = [
|
|
url(r'^admin/', include(admin.site.urls)),
|
|
]
|