Self-hostable website analytics on Django: a straightforward collector API, dashboards, a world map, and PDF reports.
analyticsdjangodockerhandcodedpythonself-hostedsqliteviteweb-analytics
1{% extends 'base.html' %}
2{% load static %}
3
4
5{% block title %}404{% endblock %}
6{% block description %}The page you are looking for doesn't exist.{% endblock %}
7
8
9{% block breadcrumbs %}{% endblock %}
10
11
12{% block main %}
13<div class="container">
14 <div class="row">
15 <div class="col text-center py-5 my-5">
16 <div class="section-label mb-3" style="justify-content:center;">not found</div>
17 <h1 class="display-1 text-white fw-bolder mb-3" style="letter-spacing: -0.02em;">404</h1>
18 <p class="text-muted">The page you're looking for doesn't exist — or was never routed.</p>
19 <a href="/" class="btn btn-outline-light mt-3">Home →</a>
20 </div>
21 </div>
22</div>
23{% endblock %}