PCv5/app/templates/admin/config.html

19 lines
463 B
HTML

{% extends "base/base.html" %}
{% block title %}
<a href="{{ url_for('adm') }}">Panneau d'administration</a> » <h1>Configuration du site</h1>
{% endblock %}
{% block content %}
<section>
<h2>Configuration du site</h2>
<table style='width: 90%; margin: auto'>
<tr><th>Nom</th><th>Valeur</th></tr>
{% for k in config %}
<tr><td>{{ k }}</td><td style="font-family:monospace;">{{ config[k] }}</td></tr>
{% endfor %}
</table>
</section>
{% endblock %}