Bitpoll/bitpoll/base/templates/404.html
2017-11-16 21:30:57 +01:00

11 lines
No EOL
399 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block content %}
{% url 'base_problems' as problemurl %}
<div class="container">
<h1>{% trans 'Page Not Found' %}</h1>
<p>{% trans 'Unfortunally this side was not found on the server' %}</p>
<p>{% blocktrans %}If you think this is an error please contact us at <a href="{{ problemurl }}"> Problems</a>{%endblocktrans %}</p>
</div>
{% endblock %}