]> code.communitydata.science - coldcallbot-discord.git/blob - templates/group_maker.html
Adding public vs. private interface
[coldcallbot-discord.git] / templates / group_maker.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4     <title>Random Student Picker</title>
5     <link rel="stylesheet" href='/static/main.css' />
6 </head>
7 <body>
8 <h3>
9   Groups:
10 </h3>
11
12 {% for group in result %}
13 <h2>Group {{group[0]}}</h2>
14
15 <ul>
16   {% for member in group[1] %}
17   <li> {{member}} </li>
18   {% endfor %}
19 </ul>
20
21 {% endfor %}
22
23
24 </body>
25 </html>

Community Data Science Collective || Want to submit a patch?