summaryrefslogtreecommitdiffstats
path: root/templates/badrequest.html
blob: 25a2731caacd0d395c9d8c3a97117cb04cb78e66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends "master.html" %}
{% block main %}
<div class="col-sm-12">
  <h1>400 - Bad Request</h1>
  {% if message: %}
    <p>{{ message }}</p>
  {% else %}
    <p>Your client made a request that could not be understood.</p>
    <p>Sorry!</p>
  {% endif %}
</div>
{% endblock %}