Files
myapp-full/myapp/templates/error.html

11 lines
298 B
HTML
Raw Normal View History

2019-10-27 19:40:03 +03:00
{% extends "skeleton.html" %}
2020-02-08 05:05:43 +03:00
{% block content %}
2019-10-27 19:40:03 +03:00
<h3 class="text-danger">{{ error_code }}: {{ error_message }}</h3>
<hr />
<h4 class="text-center">Это фиаско, братан!</h4>
<p class="text-center"><img class="img-thumbnail" src="/static/{{ error_code }}.jpg" /></p>
{% endblock %}