{% extends "base.html" %} {% load i18n %} {% load widget_tweaks %} {% block title %}{{ title }}{% endblock %} {% block content %}
| {% trans "Key:" %} | {{ setting.key }} |
|---|---|
| {% trans "Value:" %} | {{ setting.value|default:"-" }} |
| {% trans "Description:" %} | {{ setting.description|default:_("No description") }} |
| {% trans "Type:" %} | {{ setting.get_type_display }} |
| {% trans "Status:" %} | {% if setting.is_active %} {% trans "Active" %} {% else %} {% trans "Inactive" %} {% endif %} |