Formatting

This commit is contained in:
Roland Geider
2026-01-18 12:27:22 +01:00
parent bc061acfdc
commit c5281d2665

View File

@@ -58,6 +58,7 @@ INSTALLED_APPS = [
'storages', 'storages',
# Uncomment the next line to enable the admin: # Uncomment the next line to enable the admin:
# 'django.contrib.admin', # 'django.contrib.admin',
# Apps from wger proper # Apps from wger proper
'wger.config', 'wger.config',
'wger.core', 'wger.core',
@@ -72,15 +73,20 @@ INSTALLED_APPS = [
'wger.gallery', 'wger.gallery',
'wger.measurements', 'wger.measurements',
'wger.trophies', 'wger.trophies',
# reCaptcha support, see https://github.com/praekelt/django-recaptcha # reCaptcha support, see https://github.com/praekelt/django-recaptcha
'django_recaptcha', 'django_recaptcha',
# The sitemaps app # The sitemaps app
'django.contrib.sitemaps', 'django.contrib.sitemaps',
# thumbnails # thumbnails
'easy_thumbnails', 'easy_thumbnails',
# Form renderer helper # Form renderer helper
'crispy_forms', 'crispy_forms',
'crispy_bootstrap5', 'crispy_bootstrap5',
# REST-API # REST-API
'rest_framework', 'rest_framework',
'rest_framework.authtoken', 'rest_framework.authtoken',
@@ -88,20 +94,28 @@ INSTALLED_APPS = [
'rest_framework_simplejwt', 'rest_framework_simplejwt',
'drf_spectacular', 'drf_spectacular',
'drf_spectacular_sidecar', 'drf_spectacular_sidecar',
# Breadcrumbs # Breadcrumbs
'django_bootstrap_breadcrumbs', 'django_bootstrap_breadcrumbs',
# CORS # CORS
'corsheaders', 'corsheaders',
# Django Axes # Django Axes
'axes', 'axes',
# History keeping # History keeping
'simple_history', 'simple_history',
# Django email verification # Django email verification
'django_email_verification', 'django_email_verification',
# Activity stream # Activity stream
'actstream', 'actstream',
# Fontawesome # Fontawesome
'fontawesomefree', 'fontawesomefree',
# Prometheus # Prometheus
'django_prometheus', 'django_prometheus',
] ]