Add: http custom error pages, more checks js possible error, check if file delete from storage by cli

This commit is contained in:
2023-09-14 21:36:41 +09:00
parent 431541b3cb
commit b2bea677ef
12 changed files with 129 additions and 20 deletions

View 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 %}