Supported game page game links now point to the game info page. Added a link below for the settings pages.

This commit is contained in:
Chris Wilson 2021-10-11 21:20:31 -04:00
parent 11fc220d4d
commit 79e33899a8
1 changed files with 6 additions and 2 deletions

View File

@ -10,8 +10,12 @@
<div id="games">
<h1>Currently Supported Games</h1>
{% for game, description in worlds.items() %}
<h3><a href="{{ url_for("player_settings", game=game) }}">{{ game }}</a></h3>
<p>{{ description }}</p>
<h3><a href="{{ url_for("game_info", game=game, lang="en") }}">{{ game }}</a></h3>
<p>
<a href="{{ url_for("player_settings", game=game) }}">Settings Page</a>
<br />
{{ description }}
</p>
{% endfor %}
</div>
{% endblock %}