776deaec97
- Added a quick admin link section in the admin dashboard for managing team cards. - Updated the admin licenses template to correct German language spelling. - Improved the appointments template with conditional rendering for test package options. - Enhanced the base template with a logo image and adjusted brand styling. - Updated the license management template for consistent German language usage. - Removed the tutorial template and replaced it with a new admin team management template. - Introduced a new admin team management page allowing for the addition, editing, and deletion of team members.
124 lines
2.8 KiB
HTML
124 lines
2.8 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Team | Invario{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="page-hero">
|
|
<h1>Unser Team für Schulen</h1>
|
|
<p>Unsere Ansprechpartner mit klaren Verantwortungen. Inhalte und Fotos werden direkt im Admin-Bereich gepflegt.</p>
|
|
</section>
|
|
|
|
<section class="team-grid" aria-label="Team Cards">
|
|
{% for member in team_members %}
|
|
<article class="member-card">
|
|
{% if member and member.photo %}
|
|
<img class="member-photo" src="{{ url_for('static', filename=member.photo) }}" alt="Teamfoto {{ member.name }}">
|
|
{% endif %}
|
|
|
|
<div class="member-content">
|
|
<p class="member-slot">Teammitglied</p>
|
|
<h2>{{ member.name }}</h2>
|
|
<p class="member-role">{{ member.role }}</p>
|
|
<p><strong>Arbeit:</strong> {{ member.work }}</p>
|
|
{% if member.bio %}
|
|
<p>{{ member.bio }}</p>
|
|
{% endif %}
|
|
</div>
|
|
</article>
|
|
{% else %}
|
|
<article class="member-card">
|
|
<div class="member-content">
|
|
<p class="member-slot">Team</p>
|
|
<h2>Noch keine Einträge vorhanden</h2>
|
|
<p class="member-role">Der Admin kann Teammitglieder im Bereich „Admin > Team Cards“ hinzufügen.</p>
|
|
</div>
|
|
</article>
|
|
{% endfor %}
|
|
</section>
|
|
|
|
<section class="values">
|
|
<h2>Arbeitsprinzipien</h2>
|
|
<p>Direkte Kommunikation, saubere Einführung und verbindliche Betreuung im laufenden Betrieb.</p>
|
|
</section>
|
|
|
|
<style>
|
|
.page-hero {
|
|
margin-bottom: 1.2rem;
|
|
}
|
|
|
|
.team-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 1rem;
|
|
}
|
|
|
|
.member-card {
|
|
background: #ffffff;
|
|
border: 1px solid #d8dfd7;
|
|
border-radius: 16px;
|
|
overflow: hidden;
|
|
box-shadow: 0 12px 24px rgba(25, 45, 41, 0.06);
|
|
display: grid;
|
|
grid-template-rows: auto 1fr;
|
|
}
|
|
|
|
.member-photo {
|
|
width: 100%;
|
|
height: 220px;
|
|
object-fit: cover;
|
|
background: #eef2ee;
|
|
}
|
|
|
|
.member-content {
|
|
padding: 1rem;
|
|
display: grid;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.member-slot {
|
|
margin: 0;
|
|
color: #5f7479;
|
|
font-size: 0.82rem;
|
|
font-weight: 700;
|
|
letter-spacing: 0.03em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.member-content h2 {
|
|
margin: 0;
|
|
color: #264f56;
|
|
font-size: clamp(1.12rem, 1.8vw, 1.42rem);
|
|
}
|
|
|
|
.member-role {
|
|
margin: 0;
|
|
color: #3b6168;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.values {
|
|
margin-top: 1rem;
|
|
background: #ffffff;
|
|
border: 1px solid #d8dfd7;
|
|
border-radius: 14px;
|
|
padding: 1rem;
|
|
}
|
|
|
|
.values h2 {
|
|
color: #265057;
|
|
margin-bottom: 0.45rem;
|
|
font-size: clamp(1.05rem, 1.8vw, 1.35rem);
|
|
}
|
|
|
|
@media (max-width: 680px) {
|
|
.team-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.member-photo {
|
|
height: 200px;
|
|
}
|
|
}
|
|
</style>
|
|
{% endblock %}
|