Files
jumpserver/apps/templates/resource_download.html
2026-06-26 13:38:37 +08:00

58 lines
1.2 KiB
Python

{% extends '_without_nav_base.html' %}
{% load i18n %}
{% block body %}
<style>
li {
list-style: disc;
}
ul {
padding-left: 30px;
padding-top: 10px;
}
p {
padding-top: 10px;
}
</style>
<div style="margin: 0 200px">
<div class="group">
<h2>{{ VENDOR }} {% trans 'Client' %} {{ CLIENT_VERSION }}</h2>
<p>
{% trans 'Client, currently used to launch the client' %}
</p>
<ul>
<li> <a href="/download/public/Client_{{ CLIENT_VERSION }}_x64-setup.exe">{{ VENDOR }}Client_{{ CLIENT_VERSION }}_x64-setup.exe</a></li>
<li> <a href="/download/public/Client_{{ CLIENT_VERSION }}_aarch64.dmg">{{ VENDOR }}Client_{{ CLIENT_VERSION }}_aarch64.dmg</a></li>
</ul>
</div>
{% if MORE_DOWNLOADS_URL %}
<div class="group">
<h2> {% trans 'More download' %} </h2>
<ul>
<li><a href="{{ MORE_DOWNLOADS_URL }}">{% trans 'Tools and applications' %}</a></li>
</ul>
</div>
{% endif %}
</div>
<style>
ul {
list-style-type: disc;
}
li a {
color: blue;
}
.group {
padding-top: 40px;
}
.group ul {
padding-top: 10px;
}
</style>
{% endblock %}