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