blob: 97f8ca95345abe1bc81d3a72a041e34a1a1f73c1 (
plain)
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
26
27
28
29
30
31
32
33
34
35
36
|
{% if error_code %}
{% set page_title = 'Error: ' ~ error_code %}
{% else %}
{% set page_title = 'Error' %}
{% endif %}
{% if not slim %}
{% extends "base.html" %}
{% endif %}
{% if traceback %}
{% block style %}
<link href="/youtube.com/static/home.css" rel="stylesheet">
{% endblock style %}
{% endif %}
{% block main %}
{% if traceback %}
<div class="code-error" id="error-box">
<h1>500 Uncaught exception:</h1>
<div class="code-box"><code>{{ traceback }}</code></div>
<p>Please report this issue at <a href="https://todo.sr.ht/~heckyel/yt-local" target="_blank" rel="noopener noreferrer">https://todo.sr.ht/~heckyel/yt-local</a></p>
<p>Remember to include the traceback in your issue and redact any information in it you do not want to share</p>
</div>
{% else %}
<section id="error-message" class="comments-area">
<div class="comments">
<div class="comment-container">
<div class="comment">
<span class="comment-text">{{ error_message }}</span>
</div>
</div>
</div>
</section>
{% endif %}
{% endblock %}
|