aboutsummaryrefslogtreecommitdiff
path: root/src/hydrilla/proxy/policies/info_pages_templates/js_error_blocked_info.html.jinja
blob: 181b2192cacc0322530517c3c2534770f9ad22df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{#
SPDX-License-Identifier: CC0-1.0

Proxy info page with information about page with JS blocked after an error.

This file is part of Hydrilla&Haketilo.

Copyright (C) 2022 Wojtek Kosior <koszko@koszko.org>
#}
{% extends "info_base.html.jinja" %}

{% block site_policy %}
  {{ _('info.js_error_blocked.html')|safe }}
{% endblock %}

{% block main_rest %}
  {% if settings.advanced_user %}
    {{ label(_('info.js_error_blocked.stacktrace')) }}

    {% call verbatim() %}{{ traceback }}{% endcall %}
  {% endif %}
{% endblock %}