jumpserver/apps/templates/resource_download.html

67 lines
1.8 KiB
Python
Raw Normal View History

2021-09-09 06:58:13 +00:00
{% extends '_without_nav_base.html' %}
{% load i18n %}
2021-09-09 06:58:13 +00:00
{% block body %}
<style>
li {
list-style: disc;
}
ul {
padding-left: 30px;
padding-top: 10px;
}
p {
padding-top: 10px;
}
</style>
2021-09-09 06:58:13 +00:00
<div style="margin: 0 200px">
<div class="group">
<h2>JumpServer {% trans 'Client' %}</h2>
<p>
{% trans 'JumpServer Client, currently used to launch the client, now only support launch RDP client, The SSH client will next' %}
{# //JumpServer 客户端,支持 RDP 的本地拉起,后续会支持拉起 ssh。#}
</p>
2021-09-09 06:58:13 +00:00
<ul>
<li> <a href="/download/JumpServer-Client-Installer.msi">Windows {% trans 'Client' %}</a></li>
<li> <a href="/download/JumpServer-Client-Installer.dmg">macOS {% trans 'Client' %}</a></li>
2021-09-09 06:58:13 +00:00
</ul>
</div>
<div class="group">
<h2>{% trans 'Microsoft' %} RDP {% trans 'Official' %}{% trans 'Client' %}</h2>
<p>
{% trans 'macOS needs to download the client to connect RDP asset, which comes with Windows' %}
</p>
2021-09-09 06:58:13 +00:00
<ul>
<li><a href="/download/Microsoft_Remote_Desktop_10.6.7_installer.pkg">Microsoft_Remote_Desktop_10.6.7_installer.pkg</a></li>
</ul>
</div>
{% if XPACK_ENABLED %}
<div class="group">
<h2>{% trans 'Windows Remote application publisher tools' %}</h2>
<p>{% trans 'Jmservisor is the program used to pull up remote applications in Windows Remote Application publisher' %}</p>
<ul>
<li><a href="/download/Jmservisor.msi">Jmservisor</a></li>
</ul>
</div>
{% endif %}
2021-09-09 06:58:13 +00:00
</div>
<style>
ul {
list-style-type: disc;
}
li a {
color: blue;
}
.group {
padding-top: 40px;
}
.group ul {
padding-top: 10px;
}
</style>
{% endblock %}