mirror of
https://github.com/fastapi/fastapi.git
synced 2026-04-20 23:12:57 -04:00
10 lines
235 B
HTML
10 lines
235 B
HTML
<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>
|