You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.9 KiB
47 lines
1.9 KiB
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<title>Maths Educ</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous">
|
|
</script>
|
|
|
|
<style>
|
|
@font-face {
|
|
font-family: 'MenuFont';
|
|
src: url('Media/mathEducFont.ttf') format('truetype');
|
|
}
|
|
|
|
* {
|
|
font-family: 'MenuFont';
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container mt-5">
|
|
<h1>Liste des Administrateurs</h1>
|
|
<ul class="list-group">
|
|
{% for admin in administrators %}
|
|
<li class="list-group-item d-flex ustify-content-between align-items-center">
|
|
{{ admin.username }}
|
|
<div class="btn-group" role="group">
|
|
<button type="button" class="btn btn-primary">Modifier</button>
|
|
<button type="button" class="btn btn-danger">Supprimer</button>
|
|
</div>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
<div class="container mt-3">
|
|
<div class="btn-group" role="group">
|
|
<a href="/admin/users" class="btn btn-secondary">D</a>
|
|
<a href="/" class="btn btn-secondary">Retour</a>
|
|
<a href="/admin/chapters" class="btn btn-secondary">G</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|