From a8c152f255665bc4eae00cc5a7f266cc9e7ffa51 Mon Sep 17 00:00:00 2001
From: alex <alex@alexloehr.net>
Date: Thu, 27 Nov 2025 15:20:16 +0000
Subject: [PATCH] GS-2333

---
 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