{% extends "base.html" %} {% block title %}{{ _('Pywb Error') }}{% endblock %} {% block body %}

Pywb Error

{% if err_status == 451 %}

{% trans %}Access Blocked to {{ err_msg }}{% endtrans %}

{% elif err_status == 404 and err_details == 'coll_not_found' %}

{% trans %}Collection not found: {{ err_msg }}{% endtrans %}

{{ _('See list of valid collections') }}

{% elif err_status == 404 and err_details == 'static_file_not_found' %}

{% trans %}Static file not found: {{ err_msg }}{% endtrans %}

{% else %}

{{ err_msg }}

{% if err_details %}

{% trans %}Error Details:{% endtrans %}

{{ err_details }}
{% endif %} {% endif %}
{% endblock %}