forked from leftypol/leftypol
themes
This commit is contained in:
parent
32384cb722
commit
c5ec20684e
7 changed files with 214 additions and 14 deletions
27
templates/mod/theme_config.html
Normal file
27
templates/mod/theme_config.html
Normal file
|
@ -0,0 +1,27 @@
|
|||
<form action="" method="post">
|
||||
{% 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>
|
||||
<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 %}
|
||||
/>
|
||||
{% 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>
|
Loading…
Add table
Add a link
Reference in a new issue