2022-09-01 15:57:49 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title> Lesetagebuch </title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<ul>
|
|
|
|
{% for book in books %}
|
|
|
|
<li>
|
|
|
|
<a href="/book/{{book.id}}">{{ book.title }}</a>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
2022-10-23 15:47:06 +02:00
|
|
|
<form action="/book/new" method="POST">
|
|
|
|
<input name="title">
|
|
|
|
<input type="submit" value="+">
|
|
|
|
</form>
|
2022-09-01 15:57:49 +02:00
|
|
|
</body>
|
|
|
|
</html>
|