summaryrefslogtreecommitdiff
path: root/src/match_up/templates/players.j2
diff options
context:
space:
mode:
authorKaran Jayachandra <mail@karanjayachandra.com>2024-12-02 19:50:15 +0000
committerKaran Jayachandra <mail@karanjayachandra.com>2024-12-02 19:50:15 +0000
commitfd03b6dd91be67b96356827a2ce4b7728d2e25ea (patch)
tree8d9cf47a6bbac47fe9eeffbc0d92a1eef4323572 /src/match_up/templates/players.j2
parent7b7f8cdef5f035ccdab714059c1a6c54b80c4ba3 (diff)
parent662e0854a6c61503954aa659e1c932db69443a06 (diff)
Merge branch 'develop' into 'main'
Develop See merge request KaranJayachandra/match_up!12
Diffstat (limited to 'src/match_up/templates/players.j2')
-rw-r--r--src/match_up/templates/players.j214
1 files changed, 7 insertions, 7 deletions
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">