mirror of
https://github.com/pretix/pretix.git
synced 2026-05-04 15:04:03 +00:00
Remove Admin
This commit is contained in:
@@ -73,7 +73,6 @@ LANGUAGE_COOKIE_NAME = 'pretix_language'
|
||||
CSRF_COOKIE_NAME = 'pretix_csrftoken'
|
||||
|
||||
INSTALLED_APPS = (
|
||||
'django.contrib.admin',
|
||||
'django.contrib.auth',
|
||||
'django.contrib.contenttypes',
|
||||
'django.contrib.sessions',
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
import importlib
|
||||
from django.apps import apps
|
||||
from django.conf.urls import include, url
|
||||
from django.contrib import admin
|
||||
from django.conf import settings
|
||||
|
||||
import pretix.control.urls
|
||||
@@ -10,7 +9,6 @@ import pretix.presale.urls
|
||||
|
||||
urlpatterns = [
|
||||
url(r'^control/', include(pretix.control.urls, namespace='control')),
|
||||
url(r'^admin/', include(admin.site.urls)),
|
||||
# The pretixpresale namespace is configured at the bottom of this file, because it
|
||||
# contains a wildcard-style URL which has to be configured _after_ debug settings.
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user