{% extends 'layout-single.html' %} {% block title %}Reported Plugin Errors{% endblock %} {% block content %}
Expand All Collapse All
{% for name, errors in plugerr %}

{{ name }}

{% for id, err in errors %}

{{ id }}

List of hosts

{% for host in err['hosts'][1] %} {{ host }}
{% endfor %}
{% if 'timeout' in err %} {% else %} {% endif %}
Error:    {{ err['error'] }}
Hosts:    {{ numfmt('%d', err['hosts'][0]) }}
Timeout:    {{ tdfmt(err['timeout']) }}
Return code:    {{ err['returncode'] }}
STDOUT:   
{{ err['stdout'] }}
STDERR:   
{{ err['stderr'] }}
{% endfor %}
{% endfor %}
{% endblock %}