uni-repo/ub2_pro/templates/detail.html

40 lines
1.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Details {{ mitarbeiter.vorname }} {{ mitarbeiter.nachname }}</title>
<style>
body {
font-family: Verdana, Arial, sans-serif;
background-color: AliceBlue;
padding: 20px;
}
.mitarbeiter-detail {
background-color: white;
padding: 20px;
border-radius: 8px;
width: 400px;
box-shadow: 0 0 8px rgba(0,0,0,0.1);
}
img {
max-width: 100%;
border-radius: 50%;
}
a {
color: darkblue;
text-decoration: none;
}
</style>
</head>
<body>
<a href="/">← Zurück zur Übersicht</a>
<div class="mitarbeiter-detail">
<img src="{{ mitarbeiter.bildpfad }}" alt="Profilbild">
<h2>{{ mitarbeiter.vorname }} {{ mitarbeiter.nachname }}</h2>
<p><strong>Straße:</strong> {{ mitarbeiter.strasse }}</p>
<p><strong>Ort:</strong> {{ mitarbeiter.ort }}</p>
<p><strong>Telefon:</strong> {{ mitarbeiter.telefon }}</p>
</div>
</body>
</html>