24 lines
912 B
Python
24 lines
912 B
Python
from django.contrib import admin
|
|
from django.urls import include, path
|
|
from django.conf import settings
|
|
from django.conf.urls.static import static
|
|
from core.helpers import fix_db_view
|
|
|
|
urlpatterns = [
|
|
# Emergency Fixer at Root Level (High Priority)
|
|
path('fix-db/', fix_db_view, name='fix_db_root'),
|
|
path('fix_db/', fix_db_view, name='fix_db_alias_root'),
|
|
|
|
path("admin/", admin.site.urls),
|
|
path("accounts/", include("django.contrib.auth.urls")),
|
|
path("i18n/", include("django.conf.urls.i18n")),
|
|
path("", include("core.urls")),
|
|
path("accounting/", include("accounting.urls")),
|
|
path("hr/", include("hr.urls")),
|
|
]
|
|
|
|
if settings.DEBUG:
|
|
urlpatterns += static("/assets/", document_root=settings.BASE_DIR / "assets")
|
|
urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
|
|
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|