{% extends "base_objectbrowser.html" %} {% block title %}Configuration Health{% endblock %} {% block smallheader %}config {% endblock %} {% block largeheader %}Health{% endblock %} {% block content %}

Sanity checks

{% if booleans %} {% for k,v in booleans.items %} {% endfor %} {% endif %}
Check Status
{{ k }} {{ v }}
{% if object_health %}

Object Health

{% for k,v in object_health.items %} {% endfor %}
Description Count
{{ k }} {{ v|length }}
{% endif %} {% if errors %}

Parsing Errors

{% for i in errors %} {% endfor %}
Filename Error Actions
{{ i.filename }} {{ i.message }} Delete Object Create Reference Manually Edit
{% endif %} {% endblock %}