diff options
Diffstat (limited to 'src/match_up/templates')
| -rw-r--r-- | src/match_up/templates/controls.j2 | 2 | ||||
| -rw-r--r-- | src/match_up/templates/players.j2 | 14 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/match_up/templates/controls.j2 b/src/match_up/templates/controls.j2 index 24b42c6..95584f7 100644 --- a/src/match_up/templates/controls.j2 +++ b/src/match_up/templates/controls.j2 @@ -23,7 +23,7 @@ <button class="button is-dark is-responsive" hx-post="/propose" hx-target="#games" - hx-include="[name='type']">Create</button> + hx-include="[name='type']">Generate</button> </div> <div class="column"></div> <div class="column"> diff --git a/src/match_up/templates/players.j2 b/src/match_up/templates/players.j2 index cd41925..0beeee9 100644 --- a/src/match_up/templates/players.j2 +++ b/src/match_up/templates/players.j2 @@ -5,19 +5,19 @@ <body> <section class="section"> {{ navbar(url_for) }} - <h4 class="title is-4">Players</h4> + <h4 class="title is-4">Members</h4> <div class="fixed-grid has-4-cols"> <div class="grid"> - {% for player in players %} - <div class="cell"> {{ player_button(player) }} </div> + {% for regular in regulars %} + <div class="cell"> {{ player_button(regular) }} </div> {% endfor %} </div> <h4 class="title is-4">Guests</h4> - <div class="fixed-grid has-3-cols"> + <div class="fixed-grid has-4-cols"> <div class="grid"> - {% for level in guests %} - <div class="cell"> {{ guest_control(level, guests[level]) }} </div> - {% endfor %} + {% for guest in guests %} + <div class="cell"> {{ player_button(guest) }} </div> + {% endfor %} </div> </section> <section class="section"> |
