Spaces:
Sleeping
Sleeping
<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> | |