Skip to content
Snippets Groups Projects

Resolve "Fix design of custom error pages"

Merged Jonathan Weth requested to merge 292-fix-design-of-custom-error-pages into master
3 files
+ 12
6
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -5,10 +5,16 @@
{% block content %}
<div class="container">
<div class="card red">
<div class="card white-text">
<i class="material-icons small">error_outline</i>
<span class="card-title">{% trans "Error" %} (403): {% blocktrans %}You are not allowed to access the requested page or
object.{% endblocktrans %}</span>
<div class="card-content white-text">
<i class="material-icons small left">error_outline</i>
<span class="card-title">
{% if exception %}
{{ exception }}
{% else %}
{% trans "Error" %} (403): {% blocktrans %}You are not allowed to access the requested page or
object.{% endblocktrans %}
{% endif %}
</span>
<p>
{% blocktrans %}
If you think this is an error in AlekSIS, please contact your site
Loading