{% extends "pobsync_backend/base.html" %} {% block title %}{% if host %}Config | {{ host.host }}{% else %}New Host{% endif %}{% endblock %} {% block content %} Configuration {% if host %}Config: {{ host.host }}{% else %}New Host{% endif %} Host-specific backup, retention, SSH, include, and exclude settings. {% 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.label }} {{ field }} {% if field.help_text %}{{ field.help_text }}{% endif %} {% endfor %} {% if host %}Save config{% else %}Create host{% endif %} {% if host %} Cancel {% else %} Cancel {% endif %} {% 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 }} Status Check Message Detail {% for check in config_checks %} {{ check.status }} {{ check.name }} {{ check.message }} {{ check.detail }} {% endfor %} {% endif %} {% endblock %}