20 lines
277 B
HTML
20 lines
277 B
HTML
{% extends "newbase.html" %}
|
|
{% load staticfiles %}
|
|
{% load rowerfilters %}
|
|
|
|
{% block title %}Error {% endblock %}
|
|
|
|
{% block main %}
|
|
|
|
<h1>Bad Request</h1>
|
|
|
|
<p>
|
|
HTTP Error 400 Bad Request.
|
|
</p>
|
|
|
|
{% endblock %}
|
|
|
|
{% block sidebar %}
|
|
{% include 'menu_other.html' %}
|
|
{% endblock %}
|