From d87115324de76811165e7a5071cf6340a00ca00e Mon Sep 17 00:00:00 2001
From: alex <alex@alexloehr.net>
Date: Thu, 18 Sep 2025 14:47:28 +0000
Subject: [PATCH] GS-2317

---
 vue/src/pages/Kurse.vue |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/vue/src/pages/Kurse.vue b/vue/src/pages/Kurse.vue
index 3d5be03..c691bf0 100644
--- a/vue/src/pages/Kurse.vue
+++ b/vue/src/pages/Kurse.vue
@@ -5,9 +5,12 @@
 import Pagination from "../components/Pagination.vue"
 import {getKurse, routerBase} from "@/lib/api"
 
+document.title = 'Kurse | globus-ilias-rest'
+
 const route = useRoute()
 const kurse = ref([])
 const error = ref(null)
+
 
 onMounted(init)
 
@@ -46,6 +49,7 @@
                   <th>title</th>
                   <th>description</th>
                   <th>type</th>
+                  <th>offline</th>
                </tr>
             </thead>
             <tbody>
@@ -59,6 +63,7 @@
                   <td>{{ kurs.title }}</td>
                   <td>{{ kurs.description }}</td>
                   <td>{{ kurs.type }}</td>
+                  <td>{{ kurs.offline }}</td>
                </tr>
             </tbody>
          </table>

--
Gitblit v1.8.0