Merged in feature/VBV-594-dashboard-feedback (pull request #239)
Dashboard Feedback Approved-by: Christian Cueni
This commit is contained in:
commit
5efb7d84a8
|
|
@ -25,11 +25,15 @@ const allDueDates = courseSessionsStore.allDueDates();
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<router-link class="mb-16 block text-sm underline" to="/statistic/list">
|
<router-link
|
||||||
|
v-if="dashboardStore.dashboardConfigs.length > 1"
|
||||||
|
class="block text-sm underline"
|
||||||
|
to="/statistic/list"
|
||||||
|
>
|
||||||
{{ $t("a.Alle Lehrgänge anzeigen") }}
|
{{ $t("a.Alle Lehrgänge anzeigen") }}
|
||||||
</router-link>
|
</router-link>
|
||||||
|
|
||||||
<h3 class="mb-6 text-xl font-bold">{{ $t("a.AlleTermine") }}</h3>
|
<h3 class="mb-6 mt-16 text-xl font-bold">{{ $t("a.AlleTermine") }}</h3>
|
||||||
<DueDatesList
|
<DueDatesList
|
||||||
:due-dates="allDueDates"
|
:due-dates="allDueDates"
|
||||||
:max-count="13"
|
:max-count="13"
|
||||||
|
|
|
||||||
|
|
@ -78,7 +78,7 @@ const total = (metrics: AssignmentCompletionMetricsType) => {
|
||||||
}}
|
}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div class="w-72">
|
||||||
<div
|
<div
|
||||||
v-if="(item as AssignmentStatisticsRecordType).metrics.ranking_completed"
|
v-if="(item as AssignmentStatisticsRecordType).metrics.ranking_completed"
|
||||||
>
|
>
|
||||||
|
|
|
||||||
|
|
@ -62,7 +62,7 @@ const attendanceStats = (present: number, total: number) => {
|
||||||
}}
|
}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div class="w-72">
|
||||||
<div>
|
<div>
|
||||||
{{
|
{{
|
||||||
$t("a.present von total Teilnehmenden anwesend", {
|
$t("a.present von total Teilnehmenden anwesend", {
|
||||||
|
|
|
||||||
|
|
@ -48,7 +48,7 @@ const { courseSessionName, circleMeta } = useCourseStatistics();
|
||||||
}}» - Trainer: {{ (item as FeedbackStatisticsRecordType).experts }}
|
}}» - Trainer: {{ (item as FeedbackStatisticsRecordType).experts }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div class="w-80">
|
||||||
<div class="mb-4 flex items-center space-x-2">
|
<div class="mb-4 flex items-center space-x-2">
|
||||||
<div
|
<div
|
||||||
class="rounded px-2 py-1"
|
class="rounded px-2 py-1"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue