mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2026-01-27 17:59:03 +01:00
82 lines
3.6 KiB
HTML
82 lines
3.6 KiB
HTML
{% extends "baseTemplate/index.html" %}
|
|
{% load i18n %}
|
|
{% block title %}{% trans "Server Logs - 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 Logs" %}</h2>
|
|
<p>{% trans "These are the logs from main server, to see logs for your website navigate to: Websites -> List Websites -> Select Website -> View Logs." %}</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-6">
|
|
<a href="{% url 'accessLogs' %}" title="{% trans 'Access Logs' %}" class="tile-box tile-box-shortcut btn-primary">
|
|
<div class="tile-header">
|
|
{% trans "Access Logs" %}
|
|
</div>
|
|
<div class="tile-content-wrapper">
|
|
<i class="glyph-icon icon-dashboard"></i>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
|
|
|
|
<div class="col-md-6">
|
|
<a href="{% url 'errorLogs' %}" title="{% trans 'Error Logs' %}" class="tile-box tile-box-shortcut btn-primary">
|
|
<div class="tile-header">
|
|
{% trans "Error Logs" %}
|
|
</div>
|
|
<div class="tile-content-wrapper">
|
|
<i class="glyph-icon icon-dashboard"></i>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<a href="{% url 'emaillogs' %}" title="{% trans 'Email Logs' %}" class="tile-box tile-box-shortcut btn-primary">
|
|
<div class="tile-header">
|
|
{% trans "Email Logs" %}
|
|
</div>
|
|
<div class="tile-content-wrapper">
|
|
<i class="glyph-icon icon-dashboard"></i>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
|
|
|
|
<div class="col-md-6">
|
|
<a href="{% url 'ftplogs' %}" title="{% trans 'FTP Logs' %}" class="tile-box tile-box-shortcut btn-primary">
|
|
<div class="tile-header">
|
|
{% trans "FTP Logs" %}
|
|
</div>
|
|
<div class="tile-content-wrapper">
|
|
<i class="glyph-icon icon-dashboard"></i>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
{% endblock %} |