* extends mailer class with bcc based mailing * switches all team based mail sending (multiple mail adresses) to bcc based mailing * adds smaller versions of tech-croc error images for 4xx and 5xx errors for faster rendering
21 lines
812 B
HTML
21 lines
812 B
HTML
{% extends 'public_base.html' %}
|
|
{% load i18n fontawesome_5 static %}
|
|
|
|
{% block body %}
|
|
<div class="jumbotron">
|
|
<div class="row">
|
|
<div class="col-auto">
|
|
<img src="{% static 'images/error_imgs/croc_technician_400_sm.png' %}" style="max-width: 150px">
|
|
</div>
|
|
<div class="col-sm-12 col-md-9 col-lg-9 col-xl-10">
|
|
<h1 class="display-4">{% fa5_icon 'question-circle' %}400</h1>
|
|
<h1 class="display-4">{% trans 'Request was invalid' %}</h1>
|
|
</div>
|
|
</div>
|
|
<hr>
|
|
<p class="lead">
|
|
{% trans 'There seems to be a problem with the link you opened.' %}
|
|
{% trans 'Make sure the URL is valid (no whitespaces, properly copied, ...).' %}
|
|
</p>
|
|
</div>
|
|
{% endblock %} |