WebHost: sort games by alphabet

This commit is contained in:
Fabian Dill 2022-01-06 19:49:26 +01:00
parent 9894d0672f
commit aeda76c058
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@
{% include 'header/grassHeader.html' %} {% include 'header/grassHeader.html' %}
<div id="games"> <div id="games">
<h1>Currently Supported Games</h1> <h1>Currently Supported Games</h1>
{% for game, description in worlds.items() %} {% for game, description in worlds.items() | sort %}
<h3><a href="{{ url_for("game_info", game=game, lang="en") }}">{{ game }}</a></h3> <h3><a href="{{ url_for("game_info", game=game, lang="en") }}">{{ game }}</a></h3>
<p> <p>
<a href="{{ url_for("player_settings", game=game) }}">Settings Page</a> <a href="{{ url_for("player_settings", game=game) }}">Settings Page</a>