REST Service for POPCORN - ILIAS
alex
2025-10-23 951966febb19bad7a8581393fe09ee34909cc621
vue/src/pages/UserDetail.vue
@@ -8,6 +8,7 @@
const route = useRoute()
const userId = route.params.userId
document.title = `User ${userId} | globus-ilias-rest`
const error = ref(null)
const user = ref(null)
@@ -79,7 +80,7 @@
      </div>
      <h2>Teilnahmen</h2>
      <h2>Teilnahmen <small>({{teilnahmen?.length}})</small></h2>
      <table>
         <thead>
            <tr>
@@ -109,7 +110,11 @@
               <td>{{ tn.title }}</td>
               <td>{{ tn.passed }}</td>
               <td>{{ tn.status }}</td>
               <td>{{ dayjs(tn.status_changed).format("DD.MM.YYYY HH:mm:ss") }}</td>
               <td class="nowrap">
                  <div v-if="tn.status_changed">
                     {{ dayjs(tn.status_changed).format("DD.MM.YYYY HH:mm:ss") }}
                  </div>
               </td>
            </tr>
         </tbody>
      </table>