REST Service for POPCORN - ILIAS
alex
2025-10-23 1eb86629227181c4c05c8a34100f7e54a57574a8
GS-2375
1 files modified
28 ■■■■■ changed files
vue/src/pages/KursDetailLp.vue 28 ●●●●● patch | view | raw | blame | history
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>