{% extends 'base.html' %} {% load static %} {% block title %} {% if object %}Edit Setting{% else %}Add Setting{% endif %} {% endblock %} {% block content %}

{% if object %}Edit Setting{% else %}Add New Setting{% endif %}

{% csrf_token %}
{{ form.category }} {% if form.category.errors %}
{{ form.category.errors }}
{% endif %}
{{ form.key }} {% if form.key.errors %}
{{ form.key.errors }}
{% endif %}
{{ form.value }} {% if form.value.errors %}
{{ form.value.errors }}
{% endif %}
{{ form.description }} {% if form.description.errors %}
{{ form.description.errors }}
{% endif %}
{{ form.is_sensitive }}
{{ form.is_required }}
Cancel
{% endblock %}