Files
CyberPanel/manageSSL/templates/manageSSL/index.html
2019-06-08 21:41:43 +00:00

84 lines
2.9 KiB
HTML
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% extends "baseTemplate/index.html" %}
{% load i18n %}
{% block title %}{% trans "SSL Functions - CyberPanel" %}{% endblock %}
{% block content %}
{% load static %}
{% get_current_language as LANGUAGE_CODE %}
<!-- Current language: {{ LANGUAGE_CODE }} -->
<div class="container">
<div id="page-title">
<h2>{% trans "SSL Functions" %}</h2>
<p>{% trans "Issue Lets Encrypt SSLs for websites and hostname." %}</p>
</div>
<div class="panel col-lg-10">
<div class="panel-body">
<h3 class="content-box-header">
{% trans "Available Functions" %}
</h3>
<div class="example-box-wrapper">
<div class="row">
{% if manageSSL or admin %}
<div class="col-md-4 btn-min-width">
<a href="{% url 'manageSSL' %}" title="{% trans 'Manage SSL' %}" class="tile-box tile-box-shortcut btn-primary">
<div class="tile-header">
{% trans "Manage SSL" %}
</div>
<div class="tile-content-wrapper">
<i class="fa fa-folder-open"></i>
</div>
</a>
</div>
{% endif %}
{% if hostnameSSL or admin %}
<div class="col-md-4 btn-min-width">
<a href="{% url 'sslForHostName' %}" title="{% trans 'Hostname SSL' %}" class="tile-box tile-box-shortcut btn-primary">
<div class="tile-header">
{% trans "Hostname SSL" %}
</div>
<div class="tile-content-wrapper">
<i class="fa fa-laptop"></i>
</div>
</a>
</div>
{% endif %}
{% if mailServerSSL or admin %}
<div class="col-md-4 btn-min-width">
<a href="{% url 'sslForMailServer' %}" title="{% trans 'MailServer SSL' %}" class="tile-box tile-box-shortcut btn-primary">
<div class="tile-header">
{% trans "MailServer SSL" %}
</div>
<div class="tile-content-wrapper">
<i class="fa fa-envelope-square"></i>
</div>
</a>
</div>
{% endif %}
</div>
</div>
</div>
</div>
</div>
{% endblock %}