{% extends "base_objectbrowser.html" %} {% block title %}{{ filename }}{% endblock %} {% block smallheader %}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 %}
Format:
  • {{ k.format }}
{% endif %} {% if k.options %}
Options:
    {% for e in k.options %}
  • {{ e }}
  • {% endfor %}
{% endif %} {% if k.examples %}
Examples:
    {% for e in k.examples %}
  • {{ e }}
  • {% endfor %}
{% endif %} {% endautoescape %}
{% endfor %}
{% else %}

Config File not found

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