-
Notifications
You must be signed in to change notification settings - Fork 721
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use KDS tabs in Coach Reports Lesson tab
- Loading branch information
1 parent
3203922
commit 06c305a
Showing
4 changed files
with
87 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 10 additions & 1 deletion
11
kolibri/plugins/coach/assets/src/views/reports/ReportsLessonLearnerListPage.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,28 @@ | ||
<template> | ||
|
||
<ReportsLessonBase :showLearners="true" /> | ||
<ReportsLessonBase :showLearners="true" :activeTabId="ReportsLessonTabs.LEARNERS"> | ||
<KTabPanel :tabsId="REPORTS_LESSON_TABS_ID" :activeTabId="ReportsLessonTabs.LEARNERS" /> | ||
</ReportsLessonBase> | ||
|
||
</template> | ||
|
||
|
||
<script> | ||
import { REPORTS_LESSON_TABS_ID, ReportsLessonTabs } from '../../constants/tabsConstants'; | ||
import ReportsLessonBase from './ReportsLessonBase'; | ||
export default { | ||
name: 'ReportsLessonLearnerListPage', | ||
components: { | ||
ReportsLessonBase, | ||
}, | ||
data() { | ||
return { | ||
REPORTS_LESSON_TABS_ID, | ||
ReportsLessonTabs, | ||
}; | ||
}, | ||
}; | ||
</script> |
12 changes: 10 additions & 2 deletions
12
kolibri/plugins/coach/assets/src/views/reports/ReportsLessonReportPage.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,27 @@ | ||
<template> | ||
|
||
<ReportsLessonBase :showResources="true" /> | ||
<ReportsLessonBase :showResources="true" :activeTabId="ReportsLessonTabs.REPORTS"> | ||
<KTabPanel :tabsId="REPORTS_LESSON_TABS_ID" :activeTabId="ReportsLessonTabs.REPORTS" /> | ||
</ReportsLessonBase> | ||
|
||
</template> | ||
|
||
|
||
<script> | ||
import { REPORTS_LESSON_TABS_ID, ReportsLessonTabs } from '../../constants/tabsConstants'; | ||
import ReportsLessonBase from './ReportsLessonBase'; | ||
export default { | ||
name: 'ReportsLessonReportPage', | ||
components: { | ||
ReportsLessonBase, | ||
}, | ||
data() { | ||
return { | ||
REPORTS_LESSON_TABS_ID, | ||
ReportsLessonTabs, | ||
}; | ||
}, | ||
}; | ||
</script> |