Переглянути джерело

Fix RelatedFieldAjaxListFilter attributes to template passing

Denis K 8 роки тому
батько
коміт
d9076fa39a

+ 1 - 0
jet/filters.py

@@ -15,6 +15,7 @@ except ImportError: # Django 1.6
 
 
 class RelatedFieldAjaxListFilter(RelatedFieldListFilter):
+    template = 'jet/related_field_ajax_list_filter.html'
     ajax_attrs = None
 
     def has_output(self):

+ 4 - 0
jet/static/jet/js/src/layout-updaters/toolbar.js

@@ -32,6 +32,10 @@ ToolbarUpdater.prototype = {
                 var $select = $('<select>').addClass('changelist-filter-select');
                 var $items = $element.find('li');
 
+                $.each($element.prop('attributes'), function() {
+                    $select.attr(this.name, this.value);
+                });
+
                 if ($items.filter('.selected').length > 1) {
                     $select.attr('multiple', true);
                 }

+ 8 - 0
jet/templates/jet/related_field_ajax_list_filter.html

@@ -0,0 +1,8 @@
+{% load i18n %}
+<h3>{% blocktrans with filter_title=title %} By {{ filter_title }} {% endblocktrans %}</h3>
+<ul{% if spec.ajax_attrs %} class="ajax"{% endif %}{% if spec.ajax_attrs %}{{ spec.ajax_attrs }}{% endif %}>
+    {% for choice in choices %}
+        <li{% if choice.selected %} class="selected"{% endif %}>
+        <a href="{{ choice.query_string|iriencode }}" title="{{ choice.display }}">{{ choice.display }}</a></li>
+    {% endfor %}
+</ul>