Bin
2025-12-17 21f0498f62ada55651f4d232327e15fc47f498b1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{% extends 'simple.html' %}
{% load static %}
 
{% block page_labeling %}
  <title>500 | Label Studio</title>
  {{ block.super }}
{% endblock %}
 
{% block head %}
  <link rel="stylesheet" href="{{ settings.HOSTNAME }}{% static 'css/error.css' %}"/>
{% endblock %}
 
 
{% block content %}
<div class="ls-global-error">
  <img class="ls-global-error__heidi" src="{{ settings.HOSTNAME }}{% static 'images/heidi-500.svg' %}" alt="Heidi's down" draggable="false" />
  <h1>Uh oh, something went wrong.</h1>
  <h2>Here’s a few things you can try:</h2>
  <p class="ls-global-error__actions">
    <button onClick="history.back()">Go Back</button>
    <button onClick="location.reload()">Refresh</button>
    <button onClick="window.location.href='/'" class="ls-global-error__primary_button">Go to Home</button>
  </p>
</div>
{% endblock %}