{% extends 'default/base.html' %} {% load i18n %} {% load contains %} {% block title %}{% trans "Config" %} - {{block.super}} {% endblock %} {% block subtitle %}{% trans "Config" %}{% endblock %} {% block head %} {% endblock %} {% block menu %}
  • {% trans "Home" %}
  • {% trans "Queue" %}
  • {% trans "Collector" %}
  • {% trans "Downloads" %}
  • {% trans "Logs" %}
  • {% trans "Config" %}
  • {% endblock %} {% block content %} {% for message in errors %} {{message}}
    {% endfor %}
    {% for configname, config in conf.iteritems %} {% for skey, section in config.iteritems %}
    {% for okey, option in section.items %} {% ifnotequal okey "desc" %} {% endifnotequal %} {% endfor %}
    {% ifequal option.type "bool" %} {% else %} {% if option.type|contains:";" %} {% else %} {% endif %} {% endifequal %}
    {% endfor %} {% endfor %} {% if conf %}
    {% endif %} {% endblock %}