REST Service for POPCORN - ILIAS
alex
2025-11-17 77047bab4318200380b4e33e83b259a78f8ff6a6
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;