{% extends 'base.html' %} {% block title %}Validation Result{% endblock %} {% block content %}

Validation Result

{% if valid %}
Configuration is valid!
Back to Edit {% else %}
Configuration is invalid. Please fix the errors below.
{% endif %} {% if errors %}
Errors:
{% endif %} {% if warnings %}
Warnings:
{% endif %} Back to Edit {% endblock %}