{% extends '_base.html' %} {% load i18n %} {% load static %} {% block content %} {% include '_components/header.html' %}
{% include '_components/table_search.html' %} {% include '_components/sub_menu.html' %}
{% include '_components/table_pagination.html' with noscript=True %} {% for column in table_header %} {% endfor %} {% for row in table_rows %} {% for column in row %} {% if row.is_succeeded %} {% else %} {% endif %} {% endfor %} {% endfor %}
{{ column }}
{{ column }}{{ column }}
{% for b in row.bresult %}
{% if b.status >= 400 %} {{ b.status }}: {% else %} {{ b.status }}: {% endif %} {{ b.message }} [{{ b.backend_name }}]
{% endfor %}
{% include '_components/table_pagination.html' %}
{% endblock %}