diff --git a/home/templates/home/user_profile.html b/home/templates/home/user_profile.html index c96247b..8206a9c 100644 --- a/home/templates/home/user_profile.html +++ b/home/templates/home/user_profile.html @@ -19,33 +19,33 @@
{{user.username}}#{{user.discriminator}}
{% if elos_by_game %} - - {% for game_type, modes in elos_by_game.items %} - - - - - - - - - - - - {% for game_mode, player_elo in modes.items %} - - - {% if player_elo %} - - - {% else %} - - {% endif %} - - {% endfor %} - - {% endfor %} -
{{ game_type }}
ModeELOW-L-T
{{ game_mode.name }}{{ player_elo.elo|floatformat:1 }}{{ player_elo.matches_won }}-{{ player_elo.matches_lost }}-{{ player_elo.matches_drawn }}Not Played
+ {% for game_mode, elo in elos_by_game.items %} +
+
+

{{ game_mode.game }}

+ + + + + + + + + + + + {% if elo %} + + + {% else %} + + {% endif %} + + +
ModeELOW-L-T
{{ game_mode.name }}{{ elo.elo|floatformat:1 }}{{ elo.matches_won }}-{{ elo.matches_lost }}-{{ elo.matches_drawn }}Not Played
+
+
+ {% endfor %} {% endif %}