mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 13:32:15 +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.
11 lines
252 B
HTML
11 lines
252 B
HTML
{% extends 'base.html' %}
|
|
{% load staticfiles %}
|
|
{% block title %}Bad Request{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="text-center">
|
|
<h1>400: Bad Request</h1>
|
|
<img src="{% static 'imgs/400.jpg' %}"/>
|
|
</div>
|
|
{% endblock %}
|