Files
PyRIGS/templates/404.html
tomtom5152 3ce01e79c5 Readded start>end checking. Template improvements
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.
2015-03-05 18:20:43 +00:00

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