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'
LOGIN_URL = 'login'
LOGIN_REDIRECT_URL = 'dashboard'
LOGOUT_REDIRECT_URL = 'home'
@ -212,5 +213,4 @@ MESSAGE_TAGS = {
messages.SUCCESS: 'success',
messages.WARNING: 'warning',
messages.ERROR: 'danger',
}
}

View File

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