{% extends "base.html" %} {% load i18n %} {% block title %}{{ title }}{% endblock %} {% block customCSS %} {% endblock %} {% block content %}

{% if setting %} {% else %} {% endif %}
{{ title }}

{% if setting %} {% trans "Update integration setting details" %} {% else %} {% trans "Create a new integration setting" %} {% endif %}

{% trans "Setting Information" %}

{% trans "Fill in the details below" %}

{% if form.non_field_errors %}

{% trans "Error" %}

{% for error in form.non_field_errors %}

{{ error }}

{% endfor %}
{% endif %} {% if messages %}
{% for message in messages %}

{{ message }}

{% endfor %}
{% endif %}
{% csrf_token %}
{% if form.name.help_text %}

{{ form.name.help_text }}

{% endif %} {% for error in form.name.errors %}

{{ error }}

{% endfor %}
{% if form.key.help_text %}

{{ form.key.help_text }}

{% endif %} {% for error in form.key.errors %}

{{ error }}

{% endfor %}
{% if form.value.help_text %}

{{ form.value.help_text }}

{% endif %} {% for error in form.value.errors %}

{{ error }}

{% endfor %}
{{ form.category.as_widget }} {% if form.category.help_text %}

{{ form.category.help_text }}

{% endif %} {% for error in form.category.errors %}

{{ error }}

{% endfor %}
{% if form.description.help_text %}

{{ form.description.help_text }}

{% endif %} {% for error in form.description.errors %}

{{ error }}

{% endfor %}
{% if form.is_encrypted %}
{{ form.is_encrypted.as_widget }} {% trans "Store this value encrypted in the database" %}
{% if form.is_encrypted.help_text %}

{{ form.is_encrypted.help_text }}

{% endif %} {% for error in form.is_encrypted.errors %}

{{ error }}

{% endfor %}
{% endif %}
{% trans "Cancel" %}
{% endblock %} {% block customJS %} {% endblock %}