ventilaar
/
twitter_zuil
Archived
1
Fork 0
This repository has been archived on 2021-06-10. You can view files and clone it, but cannot push or open issues or pull requests.
twitter_zuil/templates/bericht.html

38 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Home</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"/>
</head>
<body>
{% include 'navbar_template.html' %}
{% include 'flash_template.html' %}
<h1>Bericht bekijken</h1>
<table style="width:100%">
<tr>
<th>Bericht ID</th>
<th>Naam</th>
<th>Bericht inhoud</th>
<th>Geplaatst in</th>
<th>Ontvangen op</th>
<th>Status bericht</th>
<th>Moderator</th>
<th>Gekeurd op</th>
<th>Twitter ID</th>
</tr>
<tr style="text-align: center;">
<td>{{ bericht[0] }}</td>
<td>{{ bericht[3] }}</td>
<td>{{ bericht[1] }}</td>
<td>{{ bericht[5] }}</td>
<td>{{ bericht[2] }}</td>
<td>{{ bericht[7] }}</td>
<td>{{ bericht[6] }}</td>
<td>{{ bericht[4] }}</td>
<td>{{ bericht[8] }}</td>
</tr>
</table>
</body>
</html>