Merge branch 'develop' into feature/VBV-597-umsetzung-cockpit-lernbegleitung
This commit is contained in:
commit
b319b539fe
|
|
@ -25,11 +25,15 @@ const allDueDates = courseSessionsStore.allDueDates();
|
|||
</div>
|
||||
</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") }}
|
||||
</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
|
||||
:due-dates="allDueDates"
|
||||
:max-count="13"
|
||||
|
|
|
|||
|
|
@ -110,6 +110,15 @@ async function startEvaluation() {
|
|||
</a>
|
||||
</p>
|
||||
|
||||
<p
|
||||
v-if="props.assignment.solution_sample && props.assignment.solution_sample.url"
|
||||
class="my-4"
|
||||
>
|
||||
<a :href="props.assignment.solution_sample.url" class="link" target="_blank">
|
||||
{{ $t("assignment.submissionShowSampleSolution") }}
|
||||
</a>
|
||||
</p>
|
||||
|
||||
<div>
|
||||
<button
|
||||
class="btn-primary text-large"
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@ const total = (metrics: AssignmentCompletionMetricsType) => {
|
|||
}}
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="w-72">
|
||||
<div
|
||||
v-if="(item as AssignmentStatisticsRecordType).metrics.ranking_completed"
|
||||
>
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ const attendanceStats = (present: number, total: number) => {
|
|||
}}
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="w-72">
|
||||
<div>
|
||||
{{
|
||||
$t("a.present von total Teilnehmenden anwesend", {
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ const { courseSessionName, circleMeta } = useCourseStatistics();
|
|||
}}» - Trainer: {{ (item as FeedbackStatisticsRecordType).experts }}
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="w-80">
|
||||
<div class="mb-4 flex items-center space-x-2">
|
||||
<div
|
||||
class="rounded px-2 py-1"
|
||||
|
|
|
|||
Loading…
Reference in New Issue