mirror of
https://github.com/MOIS3Y/logs-collector.git
synced 2025-09-13 05:03:01 +02:00
Add: http custom error pages, more checks js possible error, check if file delete from storage by cli
This commit is contained in:
10
logs_collector/templates/403_csrf.html
Normal file
10
logs_collector/templates/403_csrf.html
Normal file
@@ -0,0 +1,10 @@
|
||||
{% extends 'errors.html' %}
|
||||
{% load static %}
|
||||
|
||||
{% block title %} Logs Collector - CSRF error {% endblock title %}
|
||||
|
||||
{% block status_code %}403{% endblock status_code %}
|
||||
{% block error_message %}
|
||||
<p class="fs-3"> <span class="text-danger">Opps!</span> CSRF verification failed.</p>
|
||||
<p class="lead">Request aborted</p>
|
||||
{% endblock error_message %}
|
10
logs_collector/templates/404.html
Normal file
10
logs_collector/templates/404.html
Normal file
@@ -0,0 +1,10 @@
|
||||
{% extends 'errors.html' %}
|
||||
{% load static %}
|
||||
|
||||
{% block title %} Logs Collector - Not Found {% endblock title %}
|
||||
|
||||
{% block status_code %}404{% endblock status_code %}
|
||||
{% block error_message %}
|
||||
<p class="fs-3"> <span class="text-danger">Opps!</span> Page not found.</p>
|
||||
<p class="lead">The content you're looking for doesn't exist.</p>
|
||||
{% endblock error_message %}
|
14
logs_collector/templates/405.html
Normal file
14
logs_collector/templates/405.html
Normal file
@@ -0,0 +1,14 @@
|
||||
{% extends 'errors.html' %}
|
||||
{% load static %}
|
||||
|
||||
{% block title %} Logs Collector - Method not allowed {% endblock title %}
|
||||
|
||||
{% block status_code %}405{% endblock status_code %}
|
||||
{% block error_message %}
|
||||
<p class="fs-3"> <span class="text-danger">Opps!</span> Method not allowed</p>
|
||||
<p class="lead">
|
||||
Request method:
|
||||
<span class="text-danger">{{ request.method }}</span>
|
||||
isn't allowed for this URL
|
||||
</p>
|
||||
{% endblock error_message %}
|
10
logs_collector/templates/500.html
Normal file
10
logs_collector/templates/500.html
Normal file
@@ -0,0 +1,10 @@
|
||||
{% extends 'errors.html' %}
|
||||
{% load static %}
|
||||
|
||||
{% block title %} Logs Collector - Server error {% endblock title %}
|
||||
|
||||
{% block status_code %}500{% endblock status_code %}
|
||||
{% block error_message %}
|
||||
<p class="fs-3"> <span class="text-danger">Opps!</span> Server error</p>
|
||||
<p class="lead">Unexpected error, please try again or contact system admin </p>
|
||||
{% endblock error_message %}
|
@@ -34,10 +34,12 @@
|
||||
rel="stylesheet"
|
||||
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css"
|
||||
>
|
||||
{% block errors_head %}{% endblock errors_head %}
|
||||
{% block collector_head %}{% endblock collector_head %}
|
||||
{% block account_head %}{% endblock account_head %}
|
||||
</head>
|
||||
<body class="d-flex flex-column min-vh-100">
|
||||
{% block http_errors %}{% endblock http_errors %}
|
||||
{% block collector_content %}{% endblock collector_content %}
|
||||
{% block account_content %}{% endblock account_content %}
|
||||
<!-- BS dependences JS-->
|
||||
|
20
logs_collector/templates/errors.html
Normal file
20
logs_collector/templates/errors.html
Normal file
@@ -0,0 +1,20 @@
|
||||
{% extends 'base.html' %}
|
||||
{% load static %}
|
||||
|
||||
{% block errors_head %}
|
||||
<title>{% block title %}{% endblock title %}</title>
|
||||
{% endblock errors_head %}
|
||||
|
||||
{% block http_errors %}
|
||||
<div class="d-flex align-items-center justify-content-center vh-100" >
|
||||
<div class="text-center">
|
||||
<h1 class="display-1 fw-bold">{% block status_code %}{% endblock status_code %}</h1>
|
||||
{% block error_message %}{% endblock error_message %}
|
||||
<a href="{% url 'collector:index' %}" class="btn btn-secondary">Go Home</a>
|
||||
</div>
|
||||
<!-- Theme switcher -->
|
||||
<div class="dropdown position-fixed bottom-0 end-0 mb-3 me-3 bd-mode-toggle">
|
||||
{% include 'includes/theme_switcher.html' %}
|
||||
</div>
|
||||
</div>
|
||||
{% endblock http_errors %}
|
@@ -1,21 +1,29 @@
|
||||
<nav class="navbar navbar-expand-lg bg-body-tertiary">
|
||||
<div class="container d-flex justify-content-between">
|
||||
<div class="container">
|
||||
<ul class="navbar-nav">
|
||||
<li class="nav-item">
|
||||
<span class="text-muted">
|
||||
<button class="btn">
|
||||
v{{ version }}
|
||||
{% if environment != 'Production' %}
|
||||
Staging: {{ environment }}
|
||||
{% endif %}
|
||||
| © {{ author }}
|
||||
</span>
|
||||
</button>
|
||||
</li>
|
||||
<!-- Separator -->
|
||||
<li class="nav-item py-2 py-lg-1 col-12 col-lg-auto">
|
||||
<div class="vr d-none d-lg-flex h-100 mx-lg-2 text-white"></div>
|
||||
<hr class="d-lg-none my-2 text-white-50">
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<button class='btn'> © {{ author }} </button>
|
||||
</li>
|
||||
</ul>
|
||||
{% if request.user.is_authenticated %}
|
||||
<ul class="navbar-nav">
|
||||
<li class="nav-item">
|
||||
<li>
|
||||
<a
|
||||
class="nav-link"
|
||||
class="btn"
|
||||
type="button"
|
||||
href="{% url 'swagger-ui' %}"
|
||||
target="_blank"
|
||||
@@ -28,5 +36,6 @@
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
{% endif %}
|
||||
</div>
|
||||
</nav>
|
||||
|
Reference in New Issue
Block a user