added information button to additional Modules

This commit is contained in:
Elmar Kresse
2023-10-17 01:36:03 +02:00
parent 87b51fd6fe
commit a684e89d96
8 changed files with 80 additions and 9 deletions

View File

@ -4,9 +4,6 @@ import { Module } from "../model/module.ts";
const dialogRef = inject("dialogRef") as any;
const module = dialogRef.value.data.module as Module;
console.debug(module);
</script>
<template>
@ -14,11 +11,27 @@ console.debug(module);
<h2>{{ module.name }}</h2>
<table>
<tr>
<td>Course:</td>
<td>{{ module.course }}</td>
<td>Course: {{ module.course }}</td>
</tr>
<tr>
<td>Termine:</td>
<td>Person: {{ module.prof }}</td>
</tr>
<tr>
<td>Semester: {{ module.semester }}</td>
</tr>
<tr>
<td>
<div class="card">
<DataTable :value="module.events" tableStyle="min-width: 50rem">
<Column field="day" header="Day"></Column>
<Column field="start" header="Start"></Column>
<Column field="end" header="End"></Column>
<Column field="rooms" header="Room"></Column>
<Column field="eventType" header="Type"></Column>
<Column field="week" header="Week"></Column>
</DataTable>
</div>
</td>
</tr>
</table>
</div>