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

Start work on LessonInformation.vue

parent 6440fe13
No related branches found
No related tags found
2 merge requests!352Draft: Resolve "Add dialog with each lesson's students",!350Resolve "Add simple course book list"
...@@ -21,6 +21,8 @@ query gqlDocumentationsForCoursebook( ...@@ -21,6 +21,8 @@ query gqlDocumentationsForCoursebook(
id id
name name
shortName shortName
colourFg
colourBg
} }
topic topic
homework homework
......
<template> <template>
<v-card-text>{{ documentation.id }}</v-card-text> <v-card-text>
{{ $d(documentation.dateTimeStart, "shortTime") }}
{{ $d(documentation.dateTimeEnd, "shortTime") }}
<subject-chip :subject="documentation.subject" />
</v-card-text>
</template> </template>
<script> <script>
import SubjectChip from "aleksis.apps.cursus/components/SubjectChip.vue";
export default { export default {
name: "LessonInformation", name: "LessonInformation",
components: {
SubjectChip,
},
props: { props: {
documentation: { documentation: {
type: Object, type: Object,
......
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