Skip to content
Snippets Groups Projects
Commit ff6d8287 authored by Julian's avatar Julian
Browse files

Clarify empty hw and group note in full details

parent fe4a686f
No related branches found
No related tags found
1 merge request!402Resolve "Wording "No homework" isn't optimal as students might think that there are no homework although they are entered later"
......@@ -10,13 +10,17 @@
<v-card-title class="text-subtitle-2 pb-1 font-weight-medium">
{{ $t("alsijil.coursebook.summary.homework.label") }}
</v-card-title>
<v-card-text>{{ documentation.homework || "" }}</v-card-text>
<v-card-text>
{{ documentation.homework || $t("alsijil.coursebook.summary.homework.empty_yet") }}
</v-card-text>
</v-card>
<v-card outlined dense rounded="lg">
<v-card-title class="text-subtitle-2 pb-1 font-weight-medium">
{{ $t("alsijil.coursebook.summary.group_note.label") }}
</v-card-title>
<v-card-text>{{ documentation.groupNote || "" }}</v-card-text>
<v-card-text>
{{ documentation.groupNote || $t("alsijil.coursebook.summary.group_note.empty") }}
</v-card-text>
</v-card>
</div>
</template>
......
......@@ -66,7 +66,8 @@
"homework": {
"label": "Homework",
"value": "HW: {homework}",
"empty": "No homework"
"empty": "No homework",
"empty_yet": "No homework defined yet."
},
"group_note": {
"label": "Group note",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment