Add link to Installing X on the package page

This commit is contained in:
rubenwardy 2021-01-29 16:27:38 +00:00
parent 88a8e85b12
commit 7461acdd1f
1 changed files with 16 additions and 2 deletions

View File

@ -120,12 +120,26 @@
</span>
</div>
{% endif %}
<div class="btn-group-horizontal col-md-auto">
<div class="btn-group btn-group-horizontal col-md-auto">
{% if release %}
<a class="btn btn-download btn_green" rel="nofollow"
<a class="btn btn-download" rel="nofollow"
href="{{ package.getDownloadURL() }}">
{{ _("Download") }}
</a>
{% if package.type == package.type.MOD %}
{% set installing_url = "https://wiki.minetest.net/Installing_Mods" %}
{% elif package.type == package.type.GAME %}
{% set installing_url = "https://wiki.minetest.net/Games#Installing_games" %}
{% elif package.type == package.type.TXP %}
{% set installing_url = "https://wiki.minetest.net/Installing_Texture_Packs" %}
{% else %}
{{ 0 / 0 }}
{% endif %}
<a href="{{ installing_url }}" class="btn btn-download">
<i class="fas fa-question-circle"></i>
</a>
{% else %}
<i>
{{ _("No downloads available") }}