from django.urls import path from . import views urlpatterns = [ # Dashboard path('dashboard/', views.dashboard_view), # Volcengine account management path('volc-accounts/', views.volc_account_view), path('volc-accounts//', views.volc_account_detail_view), path('volc-accounts//test/', views.volc_account_test_view), # IAM user management path('iam-users/', views.iam_user_list_view), path('iam-users/create/', views.iam_user_create_view), path('iam-users/sync/', views.iam_user_sync_view), path('iam-users/import/', views.iam_user_import_view), path('iam-users//', views.iam_user_detail_view), path('iam-users//update/', views.iam_user_update_view), path('iam-users//disable/', views.iam_user_disable_view), path('iam-users//enable/', views.iam_user_enable_view), path('iam-users//policies/', views.iam_user_policies_view), path('iam-users//policies/attach/', views.iam_user_attach_policy_view), path('iam-users//policies/detach/', views.iam_user_detach_policy_view), path('iam-users//allocate/', views.quota_allocate_view), path('iam-users//quota-history/', views.quota_history_view), # Billing path('billing/overview/', views.spending_overview_view), path('billing/refresh/', views.spending_refresh_view), path('billing/balance/', views.balance_view), # Global config path('config/', views.global_config_view), # Alerts path('alerts/', views.alert_list_view), # Projects path('projects/', views.project_list_view), ]