Skip to content

Commit

Permalink
Made it so django-categories works with Django 1.5 and Grappelli 2.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
epicserve committed Mar 18, 2013
1 parent 46f28a3 commit 6956516
Showing 1 changed file with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{% extends "admin/change_list.html" %}
{% load adminmedia admin_list i18n admin_tree_list %}
{% load admin_list i18n admin_tree_list %}
{% block extrahead %}
{{block.super}}
{{ block.super }}
<script type="text/javascript">
(function($) {
$(document).ready(function() {
Expand Down Expand Up @@ -31,6 +31,16 @@
});
})(django.jQuery);
</script>
<style type="text/css">
#result_list.treeTable .expander {
margin-left: -10px !important;
padding-right: 13px !important;
padding-left: 0px !important;
}
#result_list.treeTable .action-select {
margin-left: 7px;
}
</style>
{% endblock %}
{% block result_list %}
{% result_tree_list cl %}
Expand Down

0 comments on commit 6956516

Please sign in to comment.