{% extends "pobsync_backend/base.html" %} {% block title %}{% if host %}Config | {{ host.host }}{% else %}New Host{% endif %}{% endblock %} {% block content %}

{% if host %}Config: {{ host.host }}{% else %}New Host{% endif %}

{% 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 }} {% if field.help_text %}
{{ field.help_text }}
{% endif %}
{% endfor %}
{% endblock %}