From 956b321928b69d23be2e95db9a452402795d1471 Mon Sep 17 00:00:00 2001 From: "Ing. Jan KRCMAR" Date: Wed, 13 Jun 2018 11:09:44 +0200 Subject: [PATCH] settings.py.template: add INSTALLED_APPS datasource, comment RemoteUserBackend, move SHOW_PROFILE_EDIT_PASSWORD --- webvirtcloud/settings.py.template | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/webvirtcloud/settings.py.template b/webvirtcloud/settings.py.template index d6d3131..eb77e8b 100644 --- a/webvirtcloud/settings.py.template +++ b/webvirtcloud/settings.py.template @@ -29,6 +29,7 @@ INSTALLED_APPS = ( 'logs', 'accounts', 'create', + 'datasource', ) MIDDLEWARE_CLASSES = ( @@ -44,6 +45,7 @@ MIDDLEWARE_CLASSES = ( AUTHENTICATION_BACKENDS = ( 'django.contrib.auth.backends.ModelBackend', + #'django.contrib.auth.backends.RemoteUserBackend', #'accounts.backends.MyRemoteUserBackend', ) @@ -122,11 +124,11 @@ QUOTA_DEBUG = True ALLOW_EMPTY_PASSWORD = True SHOW_ACCESS_ROOT_PASSWORD = False SHOW_ACCESS_SSH_KEYS = False +SHOW_PROFILE_EDIT_PASSWORD = False # available: default (grid), list VIEW_ACCOUNTS_STYLE = 'grid' -SHOW_PROFILE_EDIT_PASSWORD = False INSTANCE_VOLUME_DEFAULT_FORMAT = 'qcow2' INSTANCE_VOLUME_DEFAULT_BUS = 'virtio' INSTANCE_VOLUME_DEFAULT_CACHE = 'directsync'