Post-login lands on Spaces empty state instead of a principal dump. Profile menu exposes Session details with identity, tenant, roles/groups, and authz diagnostics for operator refinement (CSOC-WP-0004 T01/T07).
11 lines
261 B
Python
11 lines
261 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = "core"
|
|
|
|
urlpatterns = [
|
|
path("", views.landing, name="landing"),
|
|
path("app/", views.app_home, name="app_home"),
|
|
path("account/session/", views.account_session, name="account_session"),
|
|
]
|