-
Notifications
You must be signed in to change notification settings - Fork 2
/
editbook.html
45 lines (31 loc) · 1.64 KB
/
editbook.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html>
<body>
{% extends "layout.html" %}
{% block content %}
{% for row in value %}
<form action="{{ url_for('editbook', id=row[0]) }}" method="POST">
<fieldset>
<legend>Edit:</legend>
<label for="fname">Name:</label><br>
<input type="text" id="name" name="name" value="{{row[1]}}"><br><br>
<label for="author">Author:</label><br>
<input type="text" id="author" name="author" value="{{row[2]}}"><br><br>
<label for="publisher">Publisher:</label><br>
<input type="text" id="publisher" name="publisher" value="{{row[3]}}"><br><br>
<label for="year">Year:</label><br>
<input type="text" id="year" name="year" value="{{row[4]}}"><br><br>
<label for="genre">Genre:</label><br>
<input type="text" id="genre" name="genre" value="{{row[5]}}"><br><br>
<label for="description">Description:</label><br>
<input type="text" id="description" name="description" value="{{row[6]}}"><br><br>
<label for="quantity">Quantity:</label><br>
<input type="text" id="quantity" name="quantity" value="{{row[7]}}"><br><br>
<input type="submit" value="Submit">
</fieldset>
<div class="msg">{{ msg }}</div>
</form>
{% endfor %}
</body>
</html>
{% endblock %}