diff --git a/home/templates/home/user_profile.html b/home/templates/home/user_profile.html
index 0db1da6..afa810c 100644
--- a/home/templates/home/user_profile.html
+++ b/home/templates/home/user_profile.html
@@ -19,35 +19,33 @@
{{user.username}}#{{user.discriminator}}
{% if elos_by_game %}
- {% for game_type, game_modes in elos_by_game.items|groupby:"game_mode.game" %}
-
-
-
{{ game_type }}
-
-
-
- Mode |
- ELO |
- W-L-T |
-
-
-
- {% for game_mode, elo in game_modes %}
-
- {{ game_mode.name }} |
- {% if elo %}
- {{ elo.elo|floatformat:1 }} |
- {{ elo.matches_won }}-{{ elo.matches_lost }}-{{ elo.matches_drawn }} |
- {% else %}
- Not Played |
- {% endif %}
-
- {% endfor %}
-
-
-
-
- {% endfor %}
+
+ {% for game_type, modes in elos_by_game.items %}
+
+
+ {{ game_type }} |
+
+
+ Mode |
+ ELO |
+ W-L-T |
+
+
+
+ {% for item in modes %}
+
+ {{ item.mode.name }} |
+ {% if item.elo %}
+ {{ item.elo.elo|floatformat:1 }} |
+ {{ item.elo.matches_won }}-{{ item.elo.matches_lost }}-{{ item.elo.matches_drawn }} |
+ {% else %}
+ Not Played |
+ {% endif %}
+
+ {% endfor %}
+
+ {% endfor %}
+
{% endif %}