mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-15 17:56:12 +01:00
65 lines
2.7 KiB
HTML
Executable File
65 lines
2.7 KiB
HTML
Executable File
{% extends "baseTemplate/index.html" %}
|
|
{% load i18n %}
|
|
{% block title %}{% trans "FTP 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 "FTP Functions" %}</h2>
|
|
<p>{% trans "Delete and create FTP accounts on this page." %}</p>
|
|
</div>
|
|
|
|
<div class="panel col-md-12">
|
|
<div class="panel-body">
|
|
<h3 class="content-box-header">
|
|
{% trans "Available Functions" %}
|
|
</h3>
|
|
<div class="example-box-wrapper">
|
|
<div class="row">
|
|
<div class="col-md-3 btn-min-width">
|
|
<a href="{% url 'createFTPAccount' %}" title="{% trans 'Create FTP Account' %}" class="tile-box tile-box-shortcut btn-primary">
|
|
<div class="tile-header">
|
|
{% trans "Create FTP Account" %}
|
|
</div>
|
|
<div class="tile-content-wrapper">
|
|
<i class="fa fa-plus-square"></i>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="col-md-3 btn-min-width">
|
|
<a href="{% url 'deleteFTPAccount' %}" title="{% trans 'Delete FTP Account' %}" class="tile-box tile-box-shortcut btn-primary">
|
|
<div class="tile-header">
|
|
{% trans "Delete FTP Account" %}
|
|
</div>
|
|
<div class="tile-content-wrapper">
|
|
<i class="fa fa-trash"></i>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="col-md-3 btn-min-width">
|
|
<a href="{% url 'listFTPAccounts' %}" title="{% trans 'List FTP Accounts' %}" class="tile-box tile-box-shortcut btn-primary">
|
|
<div class="tile-header">
|
|
{% trans "List FTP Accounts" %}
|
|
</div>
|
|
<div class="tile-content-wrapper">
|
|
<i class="fa fa-list-ul"></i>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
{% endblock %}
|