mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-16 21:12:13 +00:00
Added descritpions of all error for the user as well as the image. Added contextual alert boxes for messages in base. If start>end start<=>end. Very simple fix, thanks Charlie.
14 lines
305 B
HTML
14 lines
305 B
HTML
{% extends 'base.html' %}
|
|
{% load staticfiles %}
|
|
{% block title %}Page Not Found{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="col-sm-12">
|
|
<h1>404: Not Found</h1>
|
|
|
|
<div class="text-center">
|
|
<img src="{% static 'imgs/404.jpg' %}"/>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|