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:
parent
11fc220d4d
commit
79e33899a8
|
@ -10,8 +10,12 @@
|
||||||
<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() %}
|
||||||
<h3><a href="{{ url_for("player_settings", game=game) }}">{{ game }}</a></h3>
|
<h3><a href="{{ url_for("game_info", game=game, lang="en") }}">{{ game }}</a></h3>
|
||||||
<p>{{ description }}</p>
|
<p>
|
||||||
|
<a href="{{ url_for("player_settings", game=game) }}">Settings Page</a>
|
||||||
|
<br />
|
||||||
|
{{ description }}
|
||||||
|
</p>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
Loading…
Reference in New Issue