mirror of
https://github.com/bryangerlach/rdgen.git
synced 2026-01-29 02:10:36 +00:00
11 lines
565 B
HTML
11 lines
565 B
HTML
{% if platform == 'windows' %}
|
|
<a href='/download?filename={{filename}}.exe&uuid={{uuid}}'>{{filename}}.exe</a>
|
|
{% elif platform == 'linux' %}
|
|
<a href='/download?filename={{filename}}.deb&uuid={{uuid}}'>{{filename}}.deb</a><br>
|
|
<a href='/download?filename={{filename}}.rpm&uuid={{uuid}}'>{{filename}}.rpm</a><br>
|
|
<a href='/download?filename={{filename}}-suse.rpm&uuid={{uuid}}'>{{filename}}-suse.rpm</a>
|
|
{% elif platform == 'android' %}
|
|
<a href='/download?filename={{filename}}.apk&uuid={{uuid}}'>{{filename}}.apk</a>
|
|
{% else %}
|
|
Error, no file generated
|
|
{% endif %} |