fancy error pages
[qcg-portal.git] / qcg / templates / qcg / error_page.html
1 {% extends 'qcg/base.html' %}
2
3 {% block container %}
4     <h1 class="page-header">{% block title %}Błąd{% endblock %}</h1>
5     <div class="alert alert-danger" style="font-size: 16px">
6         <span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
7         {% block details %}{% endblock %}
8     </div>
9
10     <button type="button" class="btn btn-primary" onclick="history.back()">Powrót</button>
11 {% endblock %}