mirror of
https://github.com/st-tu-dresden-praktikum/swt23w23
synced 2024-07-19 21:04:36 +02:00
Add eventPlanner.html and improve navbar
This commit is contained in:
parent
3df78b4ba0
commit
6e677eba82
|
@ -11,6 +11,7 @@
|
||||||
<div class="topnav"> <!-- später für css -->
|
<div class="topnav"> <!-- später für css -->
|
||||||
<a th:href="@{/}" th:text="Home">Home</a>
|
<a th:href="@{/}" th:text="Home">Home</a>
|
||||||
<a th:href="@{/catalog}" th:text="Katalog">Katalog</a>
|
<a th:href="@{/catalog}" th:text="Katalog">Katalog</a>
|
||||||
|
<a th:href="@{/event}" th:text="Eventplaner">Eventplaner</a>
|
||||||
<a th:href="@{/orders}" th:text="Aufträge">Aufträge</a>
|
<a th:href="@{/orders}" th:text="Aufträge">Aufträge</a>
|
||||||
<!--<a href="#account">Mein Konto</a>-->
|
<!--<a href="#account">Mein Konto</a>-->
|
||||||
</div>
|
</div>
|
||||||
|
|
27
src/main/resources/templates/eventPlanner.html
Normal file
27
src/main/resources/templates/eventPlanner.html
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
<!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">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<link rel="stylesheet" th:href="@{/resources/css/style.css}">
|
||||||
|
<title th:text="Katalog">Katalog</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="topnav"> <!-- später für css -->
|
||||||
|
<a th:href="@{/}" th:text="Home">Home</a>
|
||||||
|
<a th:href="@{/catalog}" th:text="Katalog">Katalog</a>
|
||||||
|
<a th:href="@{/event}" th:text="Eventplaner">Eventplaner</a>
|
||||||
|
<a th:href="@{/orders}" th:text="Aufträge">Aufträge</a>
|
||||||
|
<!--<a href="#account">Mein Konto</a>-->
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
<footer style="bottom: 0; position: absolute;">
|
||||||
|
<p>© Hannes Wurst @ Mampf GmbH</p>
|
||||||
|
<p>
|
||||||
|
<a href="mailto:catering@mampf.com">catering@mampf.com</a>
|
||||||
|
</p>
|
||||||
|
</footer>
|
||||||
|
</html>
|
|
@ -11,6 +11,7 @@
|
||||||
<div class="topnav"> <!-- später für css -->
|
<div class="topnav"> <!-- später für css -->
|
||||||
<a th:href="@{/}" th:text="Home">Home</a>
|
<a th:href="@{/}" th:text="Home">Home</a>
|
||||||
<a th:href="@{/catalog}" th:text="Katalog">Katalog</a>
|
<a th:href="@{/catalog}" th:text="Katalog">Katalog</a>
|
||||||
|
<a th:href="@{/event}" th:text="Eventplaner">Eventplaner</a>
|
||||||
<a th:href="@{/orders}" th:text="Aufträge">Aufträge</a>
|
<a th:href="@{/orders}" th:text="Aufträge">Aufträge</a>
|
||||||
<!--<a href="#account">Mein Konto</a>-->
|
<!--<a href="#account">Mein Konto</a>-->
|
||||||
</div>
|
</div>
|
||||||
|
@ -29,7 +30,7 @@
|
||||||
<th style="width:10%">Rechnung</th>
|
<th style="width:10%">Rechnung</th>
|
||||||
<th>Bezahlt</th>
|
<th>Bezahlt</th>
|
||||||
<th>Preis</th>
|
<th>Preis</th>
|
||||||
<th></th>
|
<th></th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr th:each="order : ${orders}">
|
<tr th:each="order : ${orders}">
|
||||||
<td th:text="${order.getFormattedStart()}">
|
<td th:text="${order.getFormattedStart()}">
|
||||||
|
@ -80,4 +81,3 @@
|
||||||
</p>
|
</p>
|
||||||
</footer>
|
</footer>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
<div class="topnav"> <!-- später für css -->
|
<div class="topnav"> <!-- später für css -->
|
||||||
<a th:href="@{/}" th:text="Home">Home</a>
|
<a th:href="@{/}" th:text="Home">Home</a>
|
||||||
<a th:href="@{/catalog}" th:text="Katalog">Katalog</a>
|
<a th:href="@{/catalog}" th:text="Katalog">Katalog</a>
|
||||||
|
<a th:href="@{/event}" th:text="Eventplaner">Eventplaner</a>
|
||||||
<a th:href="@{/orders}" th:text="Aufträge">Aufträge</a>
|
<a th:href="@{/orders}" th:text="Aufträge">Aufträge</a>
|
||||||
<!--<a href="#account">Mein Konto</a>-->
|
<!--<a href="#account">Mein Konto</a>-->
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue