The version of vichan running on lainchan.org
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

38 行
1.1KB

  1. <form action="" method="post">
  2. <input type="hidden" name="token" value="{{ token }}">
  3. {% if not config %}
  4. <p style="text-align:center" class="unimportant">(No configuration required.)</p>
  5. {% else %}
  6. <table>
  7. {% for conf in theme.config %}
  8. <tr>
  9. <th>{{ conf.title }}</th>
  10. <td>
  11. {% if conf.type == 'checkbox' %}
  12. <input type="checkbox" name="{{ conf.name }}"
  13. {% if settings[conf.name] or (not settings[conf.name] is defined and conf.default) %}
  14. checked
  15. {% endif %}>
  16. {% else %}
  17. <input type="text" name="{{ conf.name }}"
  18. {% if settings[conf.name] %}
  19. value="{{ settings[conf.name] }}"
  20. {% else %}
  21. {% if conf.default %}value="{{ conf.default }}"{% endif %}{% endif %}
  22. {% if conf.size %}
  23. size="{{ conf.size }}"
  24. {% endif %}>
  25. {% endif %}
  26. {% if conf.comment %}
  27. <span class="unimportant">{{ conf.comment }}</span>
  28. {% endif %}
  29. </td>
  30. </tr>
  31. {% endfor %}
  32. </table>
  33. {% endif %}
  34. <p style="text-align:center">
  35. <input name="install" type="submit" value="{% trans 'Install theme' %}" />
  36. </p>
  37. </form>