{% extends 'default/base.html' %} {% block title %}{{ _("Config") }} - {{ super() }} {% endblock %} {% block subtitle %}{{ _("Config") }}{% endblock %} {% block head %} {% endblock %} {% block menu %}
  • {{ _("Home") }}
  • {{ _("Queue") }}
  • {{ _("Collector") }}
  • {{ _("Downloads") }}
  • {{ _("Logs") }}
  • {{ _("Config") }}
  • {% endblock %} {% block content %}
    {% for configname, config in conf.iteritems() %} {% if configname != "Accounts" %} {% for skey, section in config.iteritems() %}
    {% for okey, option in section.iteritems() %} {% if okey != "desc" %} {% endif %} {% endfor %}
    {% if option.type == "bool" %} {% elif ";" in option.type %} {% elif option.type == "folder" %} {% elif option.type == "file" %} {% else %} {% endif %}
    {% endfor %} {% else %} {% for plugin, accounts in config.iteritems() %}
    {% for account in accounts %} {% endfor %}
    {{ _("Status:") }} {% if account.valid %} {{ _("valid") }} {% else %} {{ _("not valid") }} {% endif %} {{ _("Valid until:") }} {{ account.validuntil }} {{ _("Traffic left:") }} {{ account.trafficleft }} {{ _("Time:") }} {{ _("Delete? ") }}
     
    {% endfor %} {% endif %} {% endfor %} {% if conf %}

    {% for message in errors %} {{ message }}
    {% endfor %} {% endif %} {% endblock %}