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.
29 lines
1.1 KiB
29 lines
1.1 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
|
|
<!-- CSS -->
|
|
<link rel="stylesheet" href="/~rorossetto/Php_RSS/fluxRSS/templates/CSS/myStyle.css" >
|
|
<title>All Flux</title>
|
|
</head>
|
|
<body class="myBody margOp">
|
|
<a class="btn" href="/~rorossetto/Php_RSS/fluxRSS/admin/">Vue article</a>
|
|
<div class="margOp">
|
|
<h1 class="d-flex justify-content-center entete">Liste flux</h1>
|
|
</div>
|
|
{% for value in dVue.data %}
|
|
<div class="margOp enTitre caseInfo">
|
|
{{ value.getFlux() }}
|
|
<form method="post" action="deleteFlux">
|
|
<input type="hidden" name="flux" value="{{ value.getId() }}">
|
|
<button class="margOp" type="submit">Delete Flux</button>
|
|
</form>
|
|
</div>
|
|
{% endfor %}
|
|
<form method="POST" action="ajoutFlux">
|
|
<input name="fluxAdd" type="text">
|
|
<button type="submit">Ajouter Flux</button>
|
|
</form>
|
|
</body>
|
|
</html> |