blob: c070fafaedd9c6f812fe17ff620fec32c056861d (
plain)
1
2
3
4
5
6
7
8
9
|
<html>
<head>
<title>Item Details</title>
<link href="{{ url_for('static', path='/styles.css') }}" rel="stylesheet">
</head>
<body>
<h1><a href="{{ url_for('read_item', id=id) }}">Item ID: {{ id }}</a></h1>
</body>
</html>
|