You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
303 B
14 lines
303 B
4 weeks ago
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>指挥者界面</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>指挥者查看照片</h1>
|
||
|
<ul>
|
||
|
{% for media in media_items %}
|
||
|
<li><img src="{{ url_for('static', filename=media.filename) }}" width="100"></li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
</body>
|
||
|
</html>
|