{% extends "base.html" %} {% load widget_tweaks %} {% block title %}Settings{% endblock %} {% block content %}

Settings Management

Create New Setting
{% if search_query %} Clear {% endif %}
{% if search_query %}
Found {{ page_obj.paginator.count }} setting{{ page_obj.paginator.count|pluralize }} matching "{{ search_query }}"
{% endif %}
{% if messages %} {% for message in messages %} {% endfor %} {% endif %} {% if page_obj %}
{% for setting in page_obj %} {% endfor %}
Key Value Actions
{{ setting.key }} {{ setting.value|truncatechars:50 }}
{% csrf_token %}
{% if page_obj.has_other_pages %} {% endif %} {% else %}
No settings found

{% if search_query %} No settings match your search criteria "{{ search_query }}". {% else %} Get started by creating your first setting. {% endif %}

Create Setting
{% endif %}
{% if page_obj %} Showing {{ page_obj.start_index }}-{{ page_obj.end_index }} of {{ page_obj.paginator.count }} settings {% if search_query %} (filtered by: "{{ search_query }}") {% endif %} {% endif %}
{% endblock %}