mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-17 18:51:04 +01:00
84 lines
3.4 KiB
HTML
Executable File
84 lines
3.4 KiB
HTML
Executable File
{% extends "baseTemplate/index.html" %}
|
|
{% load i18n %}
|
|
{% block title %}{% trans "Server Status - 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 "Server Status" %}</h2>
|
|
<p>{% trans "View LiteSpeed status and log files." %}</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 'topProcesses' %}" title="{% trans 'Top Processes' %}"
|
|
class="tile-box tile-box-shortcut btn-primary">
|
|
<div class="tile-header">
|
|
{% trans "Top Processes" %}
|
|
</div>
|
|
<div class="tile-content-wrapper">
|
|
<i class="fa fa-heartbeat"></i>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="col-md-3 btn-min-width">
|
|
<a href="{% url 'litespeedStatus' %}" title="{% trans 'LiteSpeed Status' %}"
|
|
class="tile-box tile-box-shortcut btn-primary">
|
|
<div class="tile-header">
|
|
{% trans "LiteSpeed Status" %}
|
|
</div>
|
|
<div class="tile-content-wrapper">
|
|
<i class="fa fa-heartbeat"></i>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
|
|
|
|
<div class="col-md-3 btn-min-width">
|
|
<a href="{% url 'cyberCPMainLogFile' %}" title="{% trans 'CyberPanel Main Log File' %}"
|
|
class="tile-box tile-box-shortcut btn-primary">
|
|
<div class="tile-header">
|
|
{% trans "CyberPanel Main Log" %}
|
|
</div>
|
|
<div class="tile-content-wrapper">
|
|
<i class="fa fa-file"></i>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="col-md-3 btn-min-width">
|
|
<a href="{% url 'services' %}" title="{% trans 'Services Status' %}"
|
|
class="tile-box tile-box-shortcut btn-primary">
|
|
<div class="tile-header">
|
|
{% trans "Services Status" %}
|
|
</div>
|
|
<div class="tile-content-wrapper">
|
|
<i class="fa fa-file"></i>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
{% endblock %}
|