mirror of
https://git.linux-kernel.at/oliver/ivatar.git
synced 2025-11-11 10:46:24 +00:00
30 lines
644 B
HTML
30 lines
644 B
HTML
{% extends 'base.html' %}
|
|
{% load i18n %}
|
|
{% load static %}
|
|
{% load bootstrap4 %}
|
|
|
|
{% block title %}Libravatar: {% trans 'Error!' %}{% endblock title %}
|
|
|
|
{% block content %}
|
|
<h1 class="error">{% trans 'Error!' %}</h1>
|
|
|
|
<p>{% block errormessage %}
|
|
{% trans 'Libravatar has encountered an error.' %}
|
|
{% if errormessage %}
|
|
<br/>
|
|
<br/>
|
|
{% blocktrans %}{{ errormessage }}{% endblocktrans %}
|
|
{% endif %}
|
|
{% endblock errormessage %}</p>
|
|
|
|
<div style="height:40px"></div>
|
|
|
|
{% endblock content %}
|
|
|
|
{% block backlink %}
|
|
{% if user.is_authenticated %}
|
|
<p><a href="{% url 'profile' %}">{% trans 'Back to your profile' %}</a></p>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|