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 %}
-
-
- {{ game_type }} |
-
-
- Mode |
- ELO |
- W-L-T |
-
-
-
- {% for game_mode, player_elo in modes.items %}
-
- {{ game_mode.name }} |
- {% if player_elo %}
- {{ player_elo.elo|floatformat:1 }} |
- {{ player_elo.matches_won }}-{{ player_elo.matches_lost }}-{{ player_elo.matches_drawn }} |
- {% else %}
- Not Played |
- {% endif %}
-
- {% endfor %}
-
- {% endfor %}
-
+ {% for game_mode, elo in elos_by_game.items %}
+
+
+
{{ game_mode.game }}
+
+
+
+ Mode |
+ ELO |
+ W-L-T |
+
+
+
+
+ {{ game_mode.name }} |
+ {% if elo %}
+ {{ elo.elo|floatformat:1 }} |
+ {{ elo.matches_won }}-{{ elo.matches_lost }}-{{ elo.matches_drawn }} |
+ {% else %}
+ Not Played |
+ {% endif %}
+
+
+
+
+
+ {% endfor %}
{% endif %}