#34295 UI: multi-window budgets (budget_limits) only settable on keys, not users/teams
## What happened
Multi window budgets (`budget_limits`, several concurrent budget windows) can only be configured on keys in the Admin UI. There is no equivalent editor on users, teams, or organizations
The `BudgetWindowsEditor` React component is only wired into the key create and key edit forms. No user, team, or org form renders it
This is a UI gap rather than a backend limitation: the backend already accepts `budget_limits` on `UpdateTeamRequest` and on users via `GenerateRequestBase`, so the wiring exists on the server but the UI never surfaces it for those entities
## Repro
1. Virtual Keys -> Create New Key shows the multi window budget editor 2. Teams -> create/edit and Internal Users -> create/edit have no such editor
Confirmed against a live proxy on `litellm_internal_staging` (v1.95.0)
## Expected
Multi window budgets should be settable on users and teams too, since the backend already supports it
## Code pointers
- `ui/litellm-dashboard/src/components/key_team_helpers/BudgetWindowsEditor.tsx` - used only in `create_key_button.tsx` and `templates/key_edit_view.tsx` - backend support: `budget_limits` on `UpdateTeamRequest` and `GenerateRequestBase` in `litellm/pr…