New Training Request
Complete all steps to submit your request for approval
My Training Requests
Training Calendar
All Training Requests
| Ref | Employee | Course | Dept | Date | Stage | Status | Source | Actions |
|---|
User Management
| Name | Role | Department | Manager | Status | Actions |
|---|
Pre-Registrations
Users invited but not yet signed up
Training Log
| Employee | Course | Category | Provider | Date | Expiry | Status | VISION | Actions |
|---|
Training Reports
Training by Month
Volume of records by course category
Completion Rate by Month
Booked vs completed over time
Training by Department
Volume per team
Top Courses
Most frequently trained
Expiry Horizon
Certificates expiring in next 12 months
Training Spend by Month
Cost of confirmed training (£)
Course Summary
Totals per course in selected date range
Course × Employee Matrix
Who has completed or is booked on each course
Training Providers
Dashboard
By Department
By Priority
Recent Activity
Training Management Plan
Sourced from HF-PLN-QAL-0006 · not yet synced
Approvals Queue
Admin Panel
Course Catalogue
Manage available courses
Provider Management
System Settings
settings/main reads to a service account.Export Data
Export portal data to CSV for reporting.
Bulk Import
Backfill historic training records from a spreadsheet
Drop in a CSV of historic training (or anything not booked through the portal). Each row becomes a Training Log record. Useful when onboarding the portal — saves days of typing.
Imported records are tagged manualEntry:true and appear instantly in the Training Log, Calendar and reports.
API — Coming in Weeks 6–7
Endpoints are being built; wiring into this dashboard is next.
Once deployed to Firebase, authorised systems can read live data from the Learning Hub via three GET endpoints. Read-only, key-protected, CORS-enabled.
Endpoints
All require header X-API-Key: <your-key>
| Endpoint | Firestore Collection | Returns | Status |
|---|---|---|---|
GET /api/users |
users |
All user profiles | Pending deploy |
GET /api/completions |
completions |
Training completion records | Pending deploy |
GET /api/expiries |
expiries |
Expiry & renewal records | Pending deploy |
Deploy in ~15 minutes
Firebase Cloud Functions v2 · Node 20 · JavaScript
- Open a terminal in the
functions/folder and runnpm install - Set your secret:
firebase functions:secrets:set LEARNING_HUB_API_KEY - Deploy:
firebase deploy --only functions - Paste the printed HTTPS URLs into the Settings webhooks panel
- Test:
curl -H "X-API-Key: <key>" https://<region>-<project>.cloudfunctions.net/apiUsers
API Key Reference
Record your deployed key here for reference (admin view only)
⚠ This field is browser-local only. For production, store the key in Firebase Secret Manager via the CLI command above.