Zeitzone eingestellt
This commit is contained in:
parent
65cf6563d2
commit
50286d1c6a
Binary file not shown.
|
|
@ -149,7 +149,8 @@ AUTH_PASSWORD_VALIDATORS = [
|
||||||
|
|
||||||
LANGUAGE_CODE = 'de'
|
LANGUAGE_CODE = 'de'
|
||||||
|
|
||||||
TIME_ZONE = 'UTC'
|
|
||||||
|
TIME_ZONE = 'CET'
|
||||||
|
|
||||||
USE_I18N = True
|
USE_I18N = True
|
||||||
|
|
||||||
|
|
@ -176,7 +177,7 @@ STATIC_URL = '/static/'
|
||||||
SITE_ROOT = os.path.dirname(os.path.realpath(__file__)) + '/..'
|
SITE_ROOT = os.path.dirname(os.path.realpath(__file__)) + '/..'
|
||||||
STATIC_ROOT = (os.path.join(SITE_ROOT, 'users/static/'))
|
STATIC_ROOT = (os.path.join(SITE_ROOT, 'users/static/'))
|
||||||
#STATICFILES_DIRS = (os.path.join(SITE_ROOT, 'users/static/'),)
|
#STATICFILES_DIRS = (os.path.join(SITE_ROOT, 'users/static/'),)
|
||||||
|
|
||||||
# CRISPY
|
# CRISPY
|
||||||
CRISPY_TEMPLATE_PACK = 'bootstrap4'
|
CRISPY_TEMPLATE_PACK = 'bootstrap4'
|
||||||
|
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -350,4 +350,4 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,6 @@ class AgencyCreateView(CreateView):
|
||||||
[form.cleaned_data.get('email')],
|
[form.cleaned_data.get('email')],
|
||||||
fail_silently=False,
|
fail_silently=False,
|
||||||
)
|
)
|
||||||
|
|
||||||
return super().form_valid(form)
|
return super().form_valid(form)
|
||||||
|
|
||||||
@login_required
|
@login_required
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue