changes in financial overview

This commit is contained in:
Flatlogic Bot 2026-01-24 04:42:34 +00:00
parent bbe3291894
commit 6ab4f4cb91
4 changed files with 3 additions and 3 deletions

View File

@ -188,6 +188,7 @@ if EMAIL_USE_SSL:
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
LOGIN_URL = 'login'
LOGIN_REDIRECT_URL = 'dashboard' LOGIN_REDIRECT_URL = 'dashboard'
LOGOUT_REDIRECT_URL = 'home' LOGOUT_REDIRECT_URL = 'home'
@ -213,4 +214,3 @@ MESSAGE_TAGS = {
messages.WARNING: 'warning', messages.WARNING: 'warning',
messages.ERROR: 'danger', messages.ERROR: 'danger',
} }

View File

@ -5,8 +5,8 @@ from django.conf.urls.static import static
urlpatterns = [ urlpatterns = [
path('i18n/', include('django.conf.urls.i18n')), path('i18n/', include('django.conf.urls.i18n')),
path("admin/", admin.site.urls),
path("", include("core.urls")), path("", include("core.urls")),
path("admin/", admin.site.urls),
] ]
if settings.DEBUG: if settings.DEBUG: