Spaces:
Sleeping
Sleeping
File size: 456 Bytes
0157ea9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Decide on Solution</title>
</head>
<body>
<h1>Decide on Solution for: {{ issue.title }}</h1>
<ul>
{% for solution in solutions %}
<li>{{ solution.content }}</li>
{% endfor %}
</ul>
<form action="/decide/{{ issue.id }}" method="POST">
<input type="submit" value="Get AI Decision">
</form>
</body>
</html>
|