From 96afe9253474a7d542f3e5a467276993b7dc43ce Mon Sep 17 00:00:00 2001
From: alex <alex@alexloehr.net>
Date: Thu, 23 Oct 2025 17:25:45 +0000
Subject: [PATCH] GS-2375
---
vue/src/pages/KursDetailLp.vue | 16 +++++++++++-----
1 files changed, 11 insertions(+), 5 deletions(-)
diff --git a/vue/src/pages/KursDetailLp.vue b/vue/src/pages/KursDetailLp.vue
index cad8134..4208125 100644
--- a/vue/src/pages/KursDetailLp.vue
+++ b/vue/src/pages/KursDetailLp.vue
@@ -82,6 +82,7 @@
<!-- <pre>{{ kursLp }}</pre>-->
<h2>Combined <small>{{kursLp?.length || 0}}</small></h2>
+ <p>Kombinierter Lernfortschritt aus allen Unterobjekten die zum LF beitragen.</p>
<table class="w100p">
<thead>
<tr>
@@ -92,7 +93,6 @@
<!-- <th>passed</th>-->
<th>status</th>
<th>status_changed</th>
- <th>status_overwrite</th>
</tr>
</thead>
<tbody>
@@ -107,7 +107,6 @@
<td>{{ item.lastname }}</td>
<td>{{ item.status }}</td>
<td>{{ dayjs(item.status_changed).format("DD.MM.YYYY HH:mm:ss") }}</td>
- <td>{{ item.status_overwrite }}</td>
</tr>
</tbody>
</table>
@@ -115,6 +114,7 @@
<br>
<h2>Raw <small>{{kursLpRaw?.length || 0}}</small></h2>
+ <p>Lernfortschritt nicht kombiniert.</p>
<table class="w100p">
<thead>
<tr>
@@ -123,9 +123,9 @@
<th>firstname</th>
<th>lastname</th>
<!-- <th>passed</th>-->
+ <th>item_id</th>
<th>status</th>
<th>status_changed</th>
- <th>status_overwrite</th>
</tr>
</thead>
<tbody>
@@ -138,9 +138,15 @@
<td>{{ item.login }}</td>
<td>{{ item.firstname }}</td>
<td>{{ item.lastname }}</td>
+ <td>
+ <a :href="`${iliasBase}/goto.php?target=${item.type}_${item.item_id}`" target="_blank">
+ {{ item.item_id }}
+ <LinkExtern />
+ </a>
+<!-- {{ item.item_id }}-->
+ </td>
<td>{{ item.status }}</td>
<td>{{ dayjs(item.status_changed).format("DD.MM.YYYY HH:mm:ss") }}</td>
- <td>{{ item.status_overwrite }}</td>
</tr>
</tbody>
</table>
@@ -197,7 +203,7 @@
display flex
flex-direction column
gap .33em
- padding .33em
+ padding .33em .6em
background-color #eeeeee;
--
Gitblit v1.8.0