{% 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 %}

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