Add bug report link to WebWorld (#440)

* Add bug report link to WebWorld

* change bug_report_page to an optional
reword bug report link text.

* update Minecraft bug report page to a template.

* change wording of link.

* add `bug_report_page` documentation to api.md
This commit is contained in:
KonoTyran
2022-04-12 14:37:05 -07:00
committed by GitHub
parent a4daa78c0b
commit 1fe82b1312
4 changed files with 22 additions and 3 deletions

View File

@@ -21,6 +21,10 @@
{% elif world.web.settings_page %}
<a href="{{ url_for("player_settings", game=game_name) }}">Settings Page</a>
{% endif %}
{% if world.web.bug_report_page %}
<span class="link-spacer">|</span>
<a href="{{ world.web.bug_report_page }}">Report a Bug</a>
{% endif %}
</p>
{% endfor %}
</div>