Skip to content
Snippets Groups Projects

Resolve "Wording "No homework" isn't optimal as students might think that there are no homework although they are entered later"

All threads resolved!
2 files
+ 11
5
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -4,21 +4,21 @@
<div class="font-weight-medium mr-2">
{{ $t("alsijil.coursebook.summary.topic.label") }}:
</div>
<div class="text-truncate">{{ documentation.topic || "" }}</div>
<div class="text-truncate">{{ documentation.topic }}</div>
</template>
<template v-if="documentation.homework">
<div class="font-weight-medium mr-2">
{{ $t("alsijil.coursebook.summary.homework.label") }}:
</div>
<div class="text-truncate">{{ documentation.homework || "" }}</div>
<div class="text-truncate">{{ documentation.homework }}</div>
</template>
<template v-if="documentation.groupNote">
<div class="font-weight-medium mr-2">
{{ $t("alsijil.coursebook.summary.group_note.label") }}:
</div>
<div class="text-truncate">{{ documentation.groupNote || "" }}</div>
<div class="text-truncate">{{ documentation.groupNote }}</div>
</template>
</v-card>
</template>
Loading