2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-17 04:25:42 +00:00
Files
InvenTree/InvenTree/templates/404.html
Oliver Walters 8b16304e84 Custom 404 page
2020-10-08 14:09:08 +11:00

18 lines
355 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block page_title %}
InvenTree | {% trans "Page Not Found" %}
{% endblock %}
{% block content %}
<div class='container-fluid'>
<h3>{% trans "Page Not Found" %}</h3>
<div class='alert alert-danger alert-block'>
{% trans "The requested page does not exist" %}
</div>
</div>
{% endblock %}