30 lines
881 B
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.

{% extends "base.html" %}
{% block title %}Admin MK Control{% endblock %}
{% block content %}
<div class="container my-5">
<h1>Admin-Bereich</h1>
<p class="lead mb-4">Konfigurationen verwalten, Logs einsehen, etc.</p>
<h3>Vorhandene Konfigurationen</h3>
{% if configs %}
<ul class="list-group">
{% for cfg in configs %}
<li class="list-group-item d-flex justify-content-between align-items-center">
{{ cfg.name }} ({{ cfg.filename }})
<span>
<a href="#" class="btn btn-sm btn-outline-primary">Bearbeiten</a>
</span>
</li>
{% endfor %}
</ul>
{% else %}
<div class="alert alert-info">Noch keine Konfigurationen vorhanden.</div>
{% endif %}
<div class="mt-5">
<a href="{{ url_for('index') }}" class="btn btn-secondary">Zurück zur Übersicht</a>
</div>
</div>
{% endblock %}