{% extends "base_objectbrowser.html" %} {% load i18n %} {% block title %}{{ filename }}{% endblock %} {% block smallheader %}{% trans "Edit Config" %}{% endblock %} {% block largeheader %}{{ filename }}{% endblock %} {% block content %} {% if content %}
{% for k in content %}
{% if k.values %} {% for v in k.values %} {% endfor %} {% else %} {% endif %}

{{ k.title }}

{% autoescape off %} {{ k.doc }} {% if k.format %}
{% trans "Format:" %}
  • {{ k.format }}
{% endif %} {% if k.options %}
{% trans "Options:" %}
    {% for e in k.options %}
  • {{ e }}
  • {% endfor %}
{% endif %} {% if k.examples %}
{% trans "Examples:" %}
    {% for e in k.examples %}
  • {{ e }}
  • {% endfor %}
{% endif %} {% endautoescape %}
{% endfor %}
{% else %}

{% trans "Config File not found" %}

{% endif %} {% endblock %} {% block footer %} {% endblock %} {% block sidebar %}
{% trans "Actions" %}
{% endblock %}