commit
2f8b548ea7
|
|
@ -10,7 +10,7 @@ const props = defineProps<{
|
||||||
<template>
|
<template>
|
||||||
<div class="flex items-center justify-between py-4">
|
<div class="flex items-center justify-between py-4">
|
||||||
<div class="space-y-1">
|
<div class="space-y-1">
|
||||||
<a class="text-bold underline" :href="props.dueDate.url" target="_blank">
|
<a class="text-bold underline" :href="props.dueDate.url">
|
||||||
{{ props.dueDate.title }}
|
{{ props.dueDate.title }}
|
||||||
</a>
|
</a>
|
||||||
<p class="text-small text-gray-900">
|
<p class="text-small text-gray-900">
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<div v-if="allDueDates.length > props.maxCount" class="flex items-center pt-6">
|
<div v-if="allDueDates.length > props.maxCount" class="flex items-center pt-6">
|
||||||
<a href="">{{ $t("dueDates.showAllDueDates") }}</a>
|
<!--a href="">{{ $t("dueDates.showAllDueDates") }}</a-->
|
||||||
<it-icon-arrow-right />
|
<it-icon-arrow-right />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ from vbv_lernwelt.course.models import CourseSession
|
||||||
|
|
||||||
|
|
||||||
class DueDate(models.Model):
|
class DueDate(models.Model):
|
||||||
start = models.DateTimeField(null=True, db_index=True)
|
start = models.DateTimeField(null=True, db_index=True, blank=True)
|
||||||
end = models.DateTimeField(null=True, blank=True, db_index=True)
|
end = models.DateTimeField(null=True, blank=True, db_index=True)
|
||||||
title = models.CharField(default="", max_length=1024)
|
title = models.CharField(default="", max_length=1024)
|
||||||
learning_content_description = models.CharField(
|
learning_content_description = models.CharField(
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue