2012-08-12 10:18:13 -04:00
|
|
|
<form action="" method="post">
|
2013-09-23 02:48:56 -04:00
|
|
|
<input type="hidden" name="token" value="{{ token }}">
|
2012-08-12 10:18:13 -04:00
|
|
|
{% if not config %}
|
|
|
|
<p style="text-align:center" class="unimportant">(No configuration required.)</p>
|
|
|
|
{% else %}
|
|
|
|
<table>
|
|
|
|
{% for conf in theme.config %}
|
|
|
|
<tr>
|
|
|
|
<th>{{ conf.title }}</th>
|
|
|
|
<td>
|
2013-08-18 12:03:54 -04:00
|
|
|
{% if conf.type == 'checkbox' %}
|
|
|
|
<input type="checkbox" name="{{ conf.name }}"
|
|
|
|
{% if settings[conf.name] or (not settings[conf.name] is defined and conf.default) %}
|
|
|
|
checked
|
|
|
|
{% endif %}>
|
|
|
|
{% else %}
|
|
|
|
<input type="text" name="{{ conf.name }}"
|
|
|
|
{% if settings[conf.name] %}
|
|
|
|
value="{{ settings[conf.name] }}"
|
|
|
|
{% else %}
|
|
|
|
{% if conf.default %}value="{{ conf.default }}"{% endif %}{% endif %}
|
|
|
|
{% if conf.size %}
|
|
|
|
size="{{ conf.size }}"
|
|
|
|
{% endif %}>
|
2012-08-12 10:18:13 -04:00
|
|
|
{% endif %}
|
|
|
|
{% if conf.comment %}
|
|
|
|
<span class="unimportant">{{ conf.comment }}</span>
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
{% endif %}
|
|
|
|
<p style="text-align:center">
|
|
|
|
<input name="install" type="submit" value="{% trans 'Install theme' %}" />
|
|
|
|
</p>
|
|
|
|
</form>
|