{% extends "base.html" %} {% block title %}Pywb Error{% endblock %} {% block body %}

Pywb Error

{% if err_status == 451 %}

Access Blocked to {{ err_msg }}

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

Collection not found: {{ err_msg }}

See list of valid collections

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

Static file not found: {{ err_msg }}

{% else %}

{{ err_msg }}

{% if err_details %}

Error Details:

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