Add new templates for Dienstleistungen, Kontakt, Projekte, and Team pages
- Created 'dienstleistungen.html' to showcase services offered, including inventory system, license management, support, consulting, security concepts, and training. - Created 'kontakt.html' for contact information, including email and phone details, along with a booking section for appointments. - Created 'projekte.html' to highlight current and past projects and clients, providing insights into collaborations with educational institutions. - Created 'team.html' to introduce the team structure, roles, and selected references in the educational sector.
This commit is contained in:
@@ -14,9 +14,20 @@
|
||||
<article class="card">
|
||||
<h3>{{ item.plan }} Lizenz</h3>
|
||||
<p><strong>Schule:</strong> {{ item.school_name }}</p>
|
||||
<p><strong>Lizenzschluessel:</strong> {{ item.license_key }}</p>
|
||||
<p><strong>Lizenzschlüssel:</strong> {{ item.license_key }}</p>
|
||||
<p><strong>Status:</strong> {{ item.status }}</p>
|
||||
<p><strong>Gueltig bis:</strong> {{ item.valid_until }}</p>
|
||||
<p><strong>Gültig bis:</strong> {{ item.valid_until }}</p>
|
||||
<form method="post" class="transfer-form">
|
||||
<input type="hidden" name="action" value="transfer">
|
||||
<input type="hidden" name="license_id" value="{{ item.id }}">
|
||||
<select name="target_username" required>
|
||||
<option value="">Lizenz weitergeben an...</option>
|
||||
{% for user in transfer_users %}
|
||||
<option value="{{ user.username }}">{{ user.username }} ({{ user.display_name }})</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
<button type="submit">Weitergeben</button>
|
||||
</form>
|
||||
</article>
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
@@ -32,5 +43,8 @@
|
||||
.grid { display: grid; gap: 0.8rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
|
||||
.card { background: #fff; border: 1px solid #d8e1e8; border-radius: 14px; padding: 1rem; }
|
||||
.card p { margin-top: 0.35rem; }
|
||||
.transfer-form { margin-top: 0.8rem; display: grid; gap: 0.45rem; }
|
||||
select, button { border: 1px solid #c9d8e3; border-radius: 10px; padding: 0.52rem; font: inherit; }
|
||||
button { border-radius: 999px; color: #fff; background: linear-gradient(120deg, #0c5a86 0%, #08486c 100%); border-color: #0a4c74; font-weight: 700; }
|
||||
</style>
|
||||
{% endblock %}
|
||||
|
||||
Reference in New Issue
Block a user