Spaces:
Runtime error
Runtime error
Commit
·
ea1a15f
1
Parent(s):
fb1a4ab
Create results.html
Browse files- results.html +12 -0
results.html
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html>
|
3 |
+
<head>
|
4 |
+
<title>Image Generation Results</title>
|
5 |
+
</head>
|
6 |
+
<body>
|
7 |
+
<h1>Generated Images</h1>
|
8 |
+
{% for img in results %}
|
9 |
+
<img src="{{ url_for('image', filename=img.filename) }}"><br><br>
|
10 |
+
{% endfor %}
|
11 |
+
</body>
|
12 |
+
</html>
|