{% extends "pobsync_backend/base.html" %} {% block title %}Global Config{% endblock %} {% block content %}

{% if global_config %}Global Config{% else %}Create Global Config{% endif %}

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 }} {% if field.help_text %}
{{ field.help_text }}
{% endif %}
{% endfor %}
{% 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 }}
{% for check in config_checks %} {% endfor %}
Status Check Message Detail
{{ check.status }} {{ check.name }} {{ check.message }} {{ check.detail }}
{% endif %} {% endblock %}