From 1eb86629227181c4c05c8a34100f7e54a57574a8 Mon Sep 17 00:00:00 2001
From: alex <alex@alexloehr.net>
Date: Thu, 23 Oct 2025 14:41:40 +0000
Subject: [PATCH] GS-2375

---
 vue/src/pages/KursDetailLp.vue |   28 ++++++++++++++++++++++++++--
 1 files changed, 26 insertions(+), 2 deletions(-)

diff --git a/vue/src/pages/KursDetailLp.vue b/vue/src/pages/KursDetailLp.vue
index f903327..c47772e 100644
--- a/vue/src/pages/KursDetailLp.vue
+++ b/vue/src/pages/KursDetailLp.vue
@@ -48,6 +48,16 @@
 <template>
 
   <div>
+
+    <p id="status-info">
+      <strong>Status</strong>
+      <span>0 = noch nicht bearbeitet</span>
+      <span>1 = in Bearbeitung</span>
+      <span>2 = bestanden</span>
+      <span>3 = nicht bestanden</span>
+    </p>
+
+
     <h1>
       Kurs LP
       <small>
@@ -77,7 +87,7 @@
           <th>login</th>
           <th>firstname</th>
           <th>lastname</th>
-          <th>passed</th>
+<!--          <th>passed</th>-->
           <th>status</th>
           <th>status_changed</th>
           <th>status_overwrite</th>
@@ -96,7 +106,7 @@
           <td>{{ item.login }}</td>
           <td>{{ item.firstname }}</td>
           <td>{{ item.lastname }}</td>
-          <td>{{ item.passed }}</td>
+<!--          <td>{{ item.passed }}</td>-->
           <td>{{ item.status }}</td>
           <td>{{ dayjs(item.status_changed).format("DD.MM.YYYY HH:mm:ss") }}</td>
           <td>{{ item.status_overwrite }}</td>
@@ -147,4 +157,18 @@
       flex-direction row
       gap .33em
 
+#status-info
+  //position absolute;
+  //right 0
+  //top 0
+  font-size 85%
+  float right
+  display flex
+  flex-direction column
+  gap .33em
+  padding .33em
+  background-color #eeeeee;
+
+
+
 </style>

--
Gitblit v1.8.0