18
0
Files
coldcallbot/templates/shuffler.html
2023-03-02 15:16:39 -05:00

20 lines
257 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Shuffled List</title>
<link rel="stylesheet" href='/static/main.css' />
</head>
<body>
<h3>
Shuffled List:
</h3>
<ul>
{% for member in result %}
<li> {{member}} </li>
{% endfor %}
</ul>
</body>
</html>