Initial commit

This commit is contained in:
2020-11-13 15:31:14 +01:00
parent 2af942da5a
commit 10e2a34143
103 changed files with 3609 additions and 0 deletions

View File

@ -0,0 +1,17 @@
{% extends 'base.html' %} <!-- Add this for inheritance -->
{% load i18n %}
{% block title %}{% trans "Oops, sorry, server error (500)" %}{% endblock %}
{% block pagetitle %}<span style="color:red">{% trans "Oops, sorry, server error (500)" %}</span>{% endblock %}
{% block content %}
<p>{% trans "Unfortunately, something went wrong on the server." %}</p>
<style>
.rug-breadcrumbs {
display:none
}
.rug-layout__item.rug-width-m-8-24 {
display:none
}
</style>
{% endblock %}