{% extends "combo/appearance/manager_base.html" %} {% load i18n %} {% block page-title %}{% trans 'Appearance' %} | {{ block.super }}{% endblock %} {% block content %}

{% csrf_token %}
{% for option in options %} {% empty %} {% endfor %}
{% trans "Option Name" %} {% trans "Value" %}
{{ option.label }} {% if option.help_text %}
{{ option.help_text }} {% endif %}
{% if option.type == "color" %} {% elif option.type == "text" %} {% elif option.type == "number" %} {% elif option.type == "size" %}
×
{% elif option.type == "select" %} {% else %} {{ option.value }} {% endif %}
{% trans "There are no options." %}
{% if options %}
{% endif %}
{% endblock %}