Skip to content
Snippets Groups Projects
Unverified Commit 4b3cf23a authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Install django-ipware, use path instead of url.

parent acabdf53
No related branches found
No related tags found
1 merge request!28Implement maintenance mode. Closes #51.
......@@ -54,6 +54,7 @@ INSTALLED_APPS = [
'fa',
'django_any_js',
'django_tables2',
'django_ipware',
'maintenance_mode',
'menu_generator',
'phonenumber_field',
......
......@@ -2,7 +2,7 @@ from django.apps import apps
from django.conf import settings
from django.conf.urls.static import static
from django.contrib import admin
from django.urls import include, path, url
from django.urls import include, path
from . import views
......@@ -21,7 +21,7 @@ urlpatterns = [
path('group/<int:id_>', views.group,
{'template': 'full'}, name='group_by_id'),
path('', views.index, name='index'),
url(r'^maintenance-mode/', include('maintenance_mode.urls')),
path('maintenance-mode/', include('maintenance_mode.urls')),
]
# Custom error pages
......
......@@ -39,6 +39,7 @@ dynaconf = {version = "^2.0", extras = ["yaml", "toml", "ini"]}
django-settings-context-processor = "^0.2"
django-auth-ldap = { version = "^2.0", optional = true }
django-maintenance-mode = "^0.13.3"
django-ipware = "^2.1"
[tool.poetry.extras]
ldap = ["django-auth-ldap"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment