mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-12-31 20:59:42 +01:00
57 lines
2.1 KiB
HTML
57 lines
2.1 KiB
HTML
{% 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">
|
|
<div class="panel-body">
|
|
<h3 class="title-hero">
|
|
{% trans "Available Functions" %}
|
|
</h3>
|
|
|
|
<div class="example-box-wrapper">
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
<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="glyph-icon icon-dashboard"></i>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
|
|
|
|
<div class="col-md-4">
|
|
<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 File" %}
|
|
</div>
|
|
<div class="tile-content-wrapper">
|
|
<i class="glyph-icon icon-dashboard"></i>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
{% endblock %} |