# Template System Sync Rules **IMPORTANT**: When adding or changing template context variables, you MUST update ALL of these in sync: 1. **`packages/core/.../templates/context.py`** — `build_template_context()` where variables are computed 2. **`packages/server/.../api/template_configs.py`** — `_SAMPLE_CONTEXT` dict (for preview rendering) 3. **`packages/server/.../api/template_configs.py`** — `get_template_variables()` endpoint (`event_vars`, `asset_fields`, `album_fields`, `scheduled_vars`, per-slot variable dicts) 4. **`packages/core/.../templates/defaults/{en,ru}/*.jinja2`** — default template files using the new variables 5. **`packages/core/.../providers/immich/provider.py`** — `IMMICH_VARIABLES` list (provider-specific variable definitions) 6. **`packages/server/.../api/command_template_configs.py`** — `get_command_variables()` endpoint (for command response templates) **IMPORTANT**: Variable reference endpoints MUST document child/nested properties, not only top-level variables. When a variable is a list of dicts (e.g. `assets`, `albums`, `events`, `commands`), the endpoint MUST include a corresponding `*_fields` dict describing the child properties (e.g. `asset_fields: {"id": "...", "filename": "..."}`) so the frontend can show them (e.g. `{{ asset.id }}`, `{{ album.name }}`). Never list only `"assets": "List of asset dicts"` — always specify what fields each dict contains.