{% extends "pobsync_backend/base.html" %} {% block title %}{% if host %}Config | {{ host.host }}{% else %}New Host{% endif %}{% endblock %} {% block content %}

{% if host %}Config: {{ host.host }}{% else %}New Host{% endif %}

{% if host %} Back to host {% else %} Back to dashboard {% endif %}

{% if host %}Edit Host Config{% else %}Create Host Config{% endif %}

{% csrf_token %} {{ form.non_field_errors }} {% for field in form %}
{{ field.errors }} {{ field }} {% if field.help_text %}
{{ field.help_text }}
{% endif %}
{% endfor %}
{% if config_checks %}

Effective Config Check

OK
{{ config_check_summary.ok }}
Warnings
{{ config_check_summary.warning }}
Failed
{{ config_check_summary.failed }}
Skipped
{{ config_check_summary.skipped }}
{% for check in config_checks %} {% endfor %}
Status Check Message Detail
{{ check.status }} {{ check.name }} {{ check.message }} {{ check.detail }}
{% endif %} {% endblock %}