mirror of
https://github.com/st-tu-dresden-praktikum/swt23w23
synced 2024-07-19 21:04:36 +02:00
34 lines
1 KiB
HTML
34 lines
1 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html xmlns:th="http://www.thymeleaf.org"
|
||
|
xmlns:sec="http://www.thymeleaf.org/extras/spring-security"
|
||
|
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
||
|
layout:decorate="~{layout.html(title='Kunden')}">
|
||
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
<link rel="stylesheet" th:href="@{/resources/css/customer/style.css}" />
|
||
|
<title th:text="${title}"></title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<section layout:fragment="content">
|
||
|
<div class="verwaltung">
|
||
|
<h1>Kundenverwaltung</h1>
|
||
|
<table>
|
||
|
<tr>
|
||
|
<th>Nutzername</th>
|
||
|
<th>Aufträge</th>
|
||
|
<th>Bearbeiten</th>
|
||
|
<th>Entfernen</th>
|
||
|
</tr>
|
||
|
<tr th:each="customer : ${customers}">
|
||
|
<td th:text="${customer.username}">Musterkoch</td>
|
||
|
<td>Aufträge</td>
|
||
|
<td><a th:href="@{/customers/edit/{id}(id=${customer.id})}" class="button">Bearbeiten</a></td>
|
||
|
<td><a th:href="@{/customers/remove/{id}(id=${customer.id})}" class="button">Entfernen</a></td>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</div>
|
||
|
</section>
|
||
|
</body>
|
||
|
</html>
|