HelloWorld / templates /decide.html
chris999's picture
Upload 10 files
0157ea9 verified
raw
history blame contribute delete
456 Bytes
<!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>