mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-15 22:27:05 +03:00
14 lines
334 B
HTML
14 lines
334 B
HTML
{% raw %}{% extends "base.html" %}
|
|
|
|
{% block title %}Server Error{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Ooops!!! 500</h1>
|
|
|
|
<h3>Looks like something went wrong!</h3>
|
|
|
|
<p>We track these errors automatically, but if the problem persists feel free to contact us. In the meantime, try refreshing.</p>
|
|
{% endblock content %}
|
|
|
|
{% endraw %}
|