blob: 353300f68d66d2eb5db790507272b69777c8663e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{% extends "layout.html" %}
{% block content %}
<div class="container">
<div class="row">
<div class="span12">
<h1>Internal server error <small>Error 500</small></h1>
<br>
<p>Something went wrong on the server. We are correcting the issue. Contact vlabs team if the problem persists. Please click <a href="{% url 'account_enter' %}">here</a> to go to the homepage.</p>
</div>
</div>
</div>
{% endblock %}
|