Darstellung von Umlauten
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>{{ title or "Chipverwaltung" }}</title>
|
||||
<title>{{ title or "keyadmin" }}</title>
|
||||
<link rel="icon" href="{{ url_for('static', filename='favicon.ico') }}">
|
||||
<link rel="stylesheet" href="https://unpkg.com/@tabler/core@1.0.0-beta20/dist/css/tabler.min.css">
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@latest/tabler-icons.min.css">
|
||||
@@ -472,7 +472,7 @@
|
||||
{% for category, message in messages %}
|
||||
<div class="alert alert-{{ category }} alert-dismissible" role="alert">
|
||||
{% if category == 'import-errors' %}
|
||||
<strong>Import konnte nicht ausgefuehrt werden.</strong>
|
||||
<strong>Import konnte nicht ausgeführt werden.</strong>
|
||||
<ul class="flash-list mb-0">
|
||||
{% for entry in message %}
|
||||
<li>{{ entry }}</li>
|
||||
@@ -481,7 +481,7 @@
|
||||
{% else %}
|
||||
{{ message }}
|
||||
{% endif %}
|
||||
<button type="button" class="btn-close" aria-label="Schliessen" onclick="this.parentElement.remove();"></button>
|
||||
<button type="button" class="btn-close" aria-label="Schließen" onclick="this.parentElement.remove();"></button>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
@@ -493,8 +493,8 @@
|
||||
<div class="navbar-brand navbar-brand-autodark pe-0 pe-md-3">
|
||||
<img class="navbar-brand-logo me-3" src="{{ url_for('static', filename='cancom.svg') }}" alt="CANCOM Logo">
|
||||
<span class="navbar-brand-wordmark">
|
||||
<strong>CANCOM BU Sued/West</strong>
|
||||
<span>Tuerchip-, Parkkarten- und Poolfahrzeugverwaltung</span>
|
||||
<strong>keyadmin</strong>
|
||||
<span>Zugangsverwaltung</span>
|
||||
</span>
|
||||
</div>
|
||||
<div class="navbar-nav flex-row order-md-last top-actions">
|
||||
@@ -514,10 +514,10 @@
|
||||
<div class="navbar navbar-dark nav-surface">
|
||||
<div class="container-xl">
|
||||
<div class="d-flex flex-wrap gap-2 py-2">
|
||||
<a class="btn btn-white {% if request.endpoint == 'index' %}active{% endif %}" href="{{ url_for('index') }}"><i class="ti ti-layout-dashboard me-1"></i>Uebersicht</a>
|
||||
<a class="btn btn-white {% if request.endpoint == 'index' %}active{% endif %}" href="{{ url_for('index') }}"><i class="ti ti-layout-dashboard me-1"></i>Übersicht</a>
|
||||
<a class="btn btn-white {% if request.endpoint == 'create_user' %}active{% endif %}" href="{{ url_for('create_user') }}"><i class="ti ti-user-plus me-1"></i>User anlegen</a>
|
||||
<a class="btn btn-white {% if request.endpoint == 'assign_asset' %}active{% endif %}" href="{{ url_for('assign_asset') }}"><i class="ti ti-key me-1"></i>Ausgabe</a>
|
||||
<a class="btn btn-white {% if request.endpoint == 'return_asset' %}active{% endif %}" href="{{ url_for('return_asset') }}"><i class="ti ti-arrow-back-up me-1"></i>Rueckgabe</a>
|
||||
<a class="btn btn-white {% if request.endpoint == 'return_asset' %}active{% endif %}" href="{{ url_for('return_asset') }}"><i class="ti ti-arrow-back-up me-1"></i>Rückgabe</a>
|
||||
{% if g.current_staff.role == 'admin' %}
|
||||
<a class="btn btn-white {% if request.endpoint == 'import_data' %}active{% endif %}" href="{{ url_for('import_data') }}"><i class="ti ti-file-import me-1"></i>Import</a>
|
||||
<a class="btn btn-white {% if request.endpoint == 'manage_staff' %}active{% endif %}" href="{{ url_for('manage_staff') }}"><i class="ti ti-users-group me-1"></i>Bearbeiterverwaltung</a>
|
||||
|
||||
Reference in New Issue
Block a user