Anpassungen nach Kommentar Dario
This commit is contained in:
parent
a2b3d63d6d
commit
804551b14b
|
|
@ -104,7 +104,7 @@ async function startEvaluation() {
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p v-if="props.dueDate" class="my-4" data-cy="evaluation-duedate">
|
<p v-if="props.dueDate" class="my-4" data-cy="evaluation-duedate">
|
||||||
{{ "a.Freigabetermin Bewertung" }}: {{ props.dueDate.format("DD.MM.YYYY") }}
|
{{ $t("a.Freigabetermin Bewertung") }}: {{ props.dueDate.format("DD.MM.YYYY") }}
|
||||||
{{ props.dueDate.format("HH.mm") }}
|
{{ props.dueDate.format("HH.mm") }}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -252,7 +252,7 @@ const showPassed = computed(() => {
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p v-if="props.dueDate" class="my-4" data-cy="evaluation-duedate">
|
<p v-if="props.dueDate" class="my-4" data-cy="evaluation-duedate">
|
||||||
{{ "a.Freigabetermin Bewertung" }}: {{ props.dueDate.format("DD.MM.YYYY") }}
|
{{ $t("a.Freigabetermin Bewertung") }}: {{ props.dueDate.format("DD.MM.YYYY") }}
|
||||||
{{ props.dueDate.format("HH.mm") }}
|
{{ props.dueDate.format("HH.mm") }}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|
@ -265,18 +265,6 @@ const showPassed = computed(() => {
|
||||||
{{ $t("a.assignment.evaluationFeedbackDescriptionText") }}
|
{{ $t("a.assignment.evaluationFeedbackDescriptionText") }}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<section>
|
|
||||||
<div
|
|
||||||
v-for="historyEntry in props.assignmentCompletion.additional_json_data
|
|
||||||
?.submission_history ?? []"
|
|
||||||
:key="historyEntry.timestamp"
|
|
||||||
>
|
|
||||||
{{ dayjs(historyEntry.timestamp).format("DD.MM.YYYY HH.mm") }}:
|
|
||||||
{{ $t(historyEntry.translation_key) }}
|
|
||||||
({{ historyEntry.user_display_name }})
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<div
|
<div
|
||||||
v-if="props.assignmentCompletion.completion_status !== 'EVALUATION_SUBMITTED'"
|
v-if="props.assignmentCompletion.completion_status !== 'EVALUATION_SUBMITTED'"
|
||||||
class="mt-8"
|
class="mt-8"
|
||||||
|
|
@ -297,6 +285,8 @@ const showPassed = computed(() => {
|
||||||
></ItTextarea>
|
></ItTextarea>
|
||||||
</div>
|
</div>
|
||||||
<div v-else-if="evaluationComment" class="mt-4">
|
<div v-else-if="evaluationComment" class="mt-4">
|
||||||
|
{{ $t("a.Kommentar") }}:
|
||||||
|
<br />
|
||||||
{{ evaluationComment }}
|
{{ evaluationComment }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
@ -310,6 +300,18 @@ const showPassed = computed(() => {
|
||||||
"
|
"
|
||||||
></ItSuccessAlert>
|
></ItSuccessAlert>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<section class="mt-4">
|
||||||
|
<div
|
||||||
|
v-for="historyEntry in props.assignmentCompletion.additional_json_data
|
||||||
|
?.submission_history ?? []"
|
||||||
|
:key="historyEntry.timestamp"
|
||||||
|
>
|
||||||
|
{{ dayjs(historyEntry.timestamp).format("DD.MM.YYYY HH.mm") }}:
|
||||||
|
{{ $t(historyEntry.translation_key) }}
|
||||||
|
({{ historyEntry.user_display_name }})
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue