mirror of https://github.com/snachodog/mybuddy.git
9 lines
189 B
HTML
9 lines
189 B
HTML
|
{% extends 'error/base.html' %}
|
||
|
{% load i18n %}
|
||
|
|
||
|
{% block title %}400 {% trans "Bad Request" %}{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1>400 {% trans "Bad Request" %}</h1>
|
||
|
{% endblock %}
|