diff options
Diffstat (limited to 'src/match_up/templates/players.j2')
| -rw-r--r-- | src/match_up/templates/players.j2 | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/match_up/templates/players.j2 b/src/match_up/templates/players.j2 new file mode 100644 index 0000000..0d1f96c --- /dev/null +++ b/src/match_up/templates/players.j2 @@ -0,0 +1,17 @@ +{% from "macros.j2" import header, navbar, footer, player %} +<!doctype html> +<html lang="en"> + {{ header(url_for) }} + <body> + <section class="section"> + {{ navbar(url_for) }} + <div class="fixed-grid has-4-cols"> + <div class="grid"> + {% for id, value in players.items() %} + <div class="cell"> {{ player(id, value.status, value.name) }} </div> + {% endfor %} + </div> + {{ footer() }} + </section> + </body> +</html>
\ No newline at end of file |
