13 lines
371 B
HTML
13 lines
371 B
HTML
{% extends 'main/base.html' %}
|
|
{% load django_bootstrap5 %}
|
|
{% load static %}
|
|
|
|
{% block content %}
|
|
<div class="container text-center mt-5">
|
|
<div style="font-size: 8rem;"">🤔</div>
|
|
<h1>Oops! 500</h1>
|
|
<p>El servidor ha tenido problemas procesando tu petición.</p>
|
|
<a class=" btn btn-primary" href="/">Volver al Inicio</a>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |