Rearrange source to src dir.
[redakcja.git] / apps / wiki / templates / admin / wiki / theme / change_list.html
diff --git a/apps/wiki/templates/admin/wiki/theme/change_list.html b/apps/wiki/templates/admin/wiki/theme/change_list.html
deleted file mode 100755 (executable)
index 3e5d2ea..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-{% extends "admin/change_list.html" %}
-{% load i18n %}
-
-{% block extrahead %}
-{{ block.super }}
-<script type="text/javascript">
-(function($) {
-    $(document).ready(function($) {
-        $("#redmine-table-switch").click(function() {
-            $('#redmine-table').toggle()
-        });
-    });
-})(django.jQuery);
-</script>
-{% endblock %}
-
-
-
-{% block pretitle %}
-
-
-<a id="redmine-table-switch">↓ {% trans "Table for Redmine wiki" %} ↓</a>
-<div id="redmine-table" style="display:none; padding:1em; border: 1px solid #aaa;">
-    |{% for theme in cl.get_queryset %}[[{{ theme }}]]|{% if forloop.counter|divisibleby:7 %}<br/>
-        |{% endif %}{% endfor %}
-</div>
-
-{{ block.super }}
-{% endblock %}