You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
651 B
HTML
22 lines
651 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>library</title>
|
|
<link rel="stylesheet" href="{{url_for('static', filename="style_default.css")}}">
|
|
</head>
|
|
<body>
|
|
hello here a list of:
|
|
<a class="addNew" href='https://hub.xpub.nl/soupboat/library/add'><button id="reference">add new element</button></a>
|
|
<table>
|
|
{% for row in reading_list%}
|
|
<tr>
|
|
<td>{{row['author']| safe}}</td>
|
|
<td>{{row['title']|safe}}</td>
|
|
<td>{{row['description']|safe}}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</body>
|
|
</html>
|