34 lines
760 B
JavaScript
34 lines
760 B
JavaScript
class CoachingAdminController extends EICController {
|
|
|
|
dashboard() {
|
|
|
|
let models = {
|
|
coachings: new CoachingAdminModel()
|
|
}
|
|
|
|
this.loadWindow(
|
|
'coachings/admin/CoachingAdminDashboardView',
|
|
{
|
|
title: 'Coaching monitoring',
|
|
static: true,
|
|
expanded: true
|
|
},
|
|
{
|
|
models: models
|
|
});
|
|
}
|
|
|
|
coaching(options) {
|
|
|
|
}
|
|
|
|
profile(options) {
|
|
this.loadWindow('coachings/common/CoachProfileView', {
|
|
title: 'Coach profile',
|
|
static: true,
|
|
expanded: true
|
|
});
|
|
}
|
|
}
|
|
|
|
app.registerClass('CoachingAdminController', CoachingAdminController); |