{% extends "pobsync_backend/base.html" %} {% block title %}Global Config{% endblock %} {% block content %} Configuration {% if global_config %}Global Config{% else %}Create Global Config{% endif %} Defaults used by hosts unless a host overrides them explicitly. Back to dashboard {% if global_config %}Edit Global Config{% else %}Create Global Config{% endif %} Backup root: {{ backup_root }} This path is managed by the service environment and is saved with the config. {% csrf_token %} {{ form.non_field_errors }} {% for field in form %} {{ field.errors }} {{ field.label }} {{ field }} {% if field.help_text %}{{ field.help_text }}{% endif %} {% endfor %} Save global config Cancel {% if config_checks %} 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 %}