mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.9 KiB
79 lines
2.9 KiB
{% 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>JumpServer {% trans 'Client' %} {{ CLIENT_VERSION }}</h2>
|
|
<p>
|
|
{% trans 'JumpServer Client, currently used to launch the client, now only support launch RDP SSH client, The Telnet client will next' %}
|
|
</p>
|
|
<ul>
|
|
<li> <a href="/download/public/JumpServer-Client-Installer-win-{{ CLIENT_VERSION }}-x64.msi">jumpserver-client-windows-x86_64.msi</a></li>
|
|
<li> <a href="/download/public/JumpServer-Client-Installer-win-{{ CLIENT_VERSION }}-x64.exe">jumpserver-client-windows-x86_64.exe</a></li>
|
|
<li> <a href="/download/public/JumpServer-Client-Installer-mac-{{ CLIENT_VERSION }}-x64.dmg">jumpserver-client-darwin.dmg(Intel)</a></li>
|
|
<li> <a href="/download/public/JumpServer-Client-Installer-mac-{{ CLIENT_VERSION }}-arm64.dmg">jumpserver-client-darwin.dmg(Apple Silicon)</a></li>
|
|
<li> <a href="/download/public/JumpServer-Client-Installer-linux-{{ CLIENT_VERSION }}-amd64.deb">jumpserver-client-linux-amd64.deb</a></li>
|
|
<li> <a href="/download/public/JumpServer-Client-Installer-linux-{{ CLIENT_VERSION }}-arm64.deb">jumpserver-client-linux-arm64.deb</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="group">
|
|
<h2>{% trans 'Microsoft' %} RDP {% trans 'Official' %}{% trans 'Client' %} v10.6.7</h2>
|
|
<p>
|
|
{% trans 'macOS needs to download the client to connect RDP asset, which comes with Windows' %}
|
|
</p>
|
|
<ul>
|
|
<li><a href="/download/public/Microsoft_Remote_Desktop_{{ MRD_VERSION }}_installer.pkg">microsoft-remote-desktop-installer.pkg</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="group">
|
|
<h2>{% trans 'Windows Remote application publisher tools' %}</h2>
|
|
<p>{% trans 'OpenSSH is a program used to connect remote applications in the Windows Remote Application Publisher' %}</p>
|
|
<ul>
|
|
<li><a href="/download/public/OpenSSH-Win64-{{ OPENSSH_VERSION }}.msi">openSSH-win64.msi</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="group">
|
|
<h2>JumpServer {% trans 'Offline video player' %} v0.1.9</h2>
|
|
<ul>
|
|
<li><a href="/download/public/JumpServer.Video.Player-{{ VIDEO_PLAYER_VERSION }}.dmg">jumpserver-video-player.dmg</a></li>
|
|
<li><a href="/download/public/JumpServer.Video.Player.Setup.{{ VIDEO_PLAYER_VERSION }}.exe">jumpserver-video-player.exe</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<style>
|
|
ul {
|
|
list-style-type: disc;
|
|
}
|
|
|
|
li a {
|
|
color: blue;
|
|
}
|
|
|
|
.group {
|
|
padding-top: 40px;
|
|
}
|
|
|
|
.group ul {
|
|
padding-top: 10px;
|
|
}
|
|
</style>
|
|
|
|
{% endblock %}
|