{% extends 'base.html'%} {% block title %}Settings{% endblock%} {% block head_postload %} {% endblock %} {% block logo %} {% endblock %} {% block quitbutton %} {% endblock %} {% block content %}
{% for k, v in args.settings.items()%}

{{k|replace("_", " ")|uc_first}}

{% for ks in args.known_settings[k]%} {% if args.known_settings_meta[(k,ks)]['type']=='text' %}
{% elif args.known_settings_meta[(k,ks)]['type']=='password' %}
{% elif args.known_settings_meta[(k,ks)]['type']=='select' %}
{% endif %} {% endfor%} {% for s, t in v.items()%} {% if s not in args.known_settings[k] %}
{% endif %} {% endfor %}
{% endfor %}
{% endblock %}