diff options
| author | 2020-07-15 12:31:18 +0200 | |
|---|---|---|
| committer | 2020-07-15 12:31:18 +0200 | |
| commit | 0f99bf948b5d2a4fdd3a938ed8c5a6b628fe58d8 (patch) | |
| tree | 77008b8fc0b0546b7a78f23d6ea77b2f1b948047 /pydis_site/settings.py | |
| parent | Add the AllowList model and serializer. (diff) | |
| parent | Merge pull request #346 from python-discord/feat/deps/344/django-3.0 (diff) | |
Merge branch 'master' into whitelist_system
Diffstat (limited to 'pydis_site/settings.py')
| -rw-r--r-- | pydis_site/settings.py | 16 | 
1 files changed, 2 insertions, 14 deletions
diff --git a/pydis_site/settings.py b/pydis_site/settings.py index 5f80a414..2c87007c 100644 --- a/pydis_site/settings.py +++ b/pydis_site/settings.py @@ -52,6 +52,8 @@ if DEBUG:              'api.pythondiscord.local',              'admin.pythondiscord.local',              'staff.pythondiscord.local', +            '0.0.0.0',  # noqa: S104 +            'localhost',              'web',              'api.web',              'admin.web', @@ -104,8 +106,6 @@ INSTALLED_APPS = [      'allauth.socialaccount.providers.discord',      'allauth.socialaccount.providers.github', -    'crispy_forms', -    'django_crispy_bulma',      'django_hosts',      'django_filters',      'django_nyt.apps.DjangoNytConfig', @@ -288,7 +288,6 @@ LOGGING = {  }  # Django Messages framework config -  MESSAGE_TAGS = {      messages.DEBUG: 'primary',      messages.INFO: 'info', @@ -297,17 +296,6 @@ MESSAGE_TAGS = {      messages.ERROR: 'danger',  } -# Custom settings for Crispyforms -CRISPY_ALLOWED_TEMPLATE_PACKS = ( -    "bootstrap", -    "uni_form", -    "bootstrap3", -    "bootstrap4", -    "bulma", -) - -CRISPY_TEMPLATE_PACK = "bulma" -  # Custom settings for django-simple-bulma  BULMA_SETTINGS = {      "variables": {  # If you update these colours, please update the notification.css file  |