Merge master into img-playground. Image support with new management features. Missing...
[redakcja.git] / apps / wiki / templates / admin / wiki / theme / change_list.html
1 {% extends "admin/change_list.html" %}
2
3 {% block extrahead %}
4 {{ block.super }}
5 <script type="text/javascript">
6 (function($) {
7     $(document).ready(function($) {
8         $("#redmine-table-switch").click(function() {
9             $('#redmine-table').toggle()
10         });
11     });
12 })(django.jQuery);
13 </script>
14 {% endblock %}
15
16
17
18 {% block pretitle %}
19
20
21 <a id="redmine-table-switch">↓ {% trans "Table for Redmine wiki" %} ↓</a>
22 <div id="redmine-table" style="display:none; padding:1em; border: 1px solid #aaa;">
23     |{% for theme in cl.get_query_set %}[[{{ theme }}]]|{% if forloop.counter|divisibleby:7 %}<br/>
24         |{% endif %}{% endfor %}
25 </div>
26
27 {{ block.super }}
28 {% endblock %}