Added support to dropdown list filter
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
{% load i18n admin_interface_tags %}
|
||||
|
||||
<div class="list-filter-dropdown">
|
||||
<h3>{% blocktrans with title as filter_title %} By {{ filter_title }} {% endblocktrans %}</h3>
|
||||
<div align="right">
|
||||
<select onChange="javascript:window.location = this.options[this.selectedIndex].value;">
|
||||
{% for choice in choices %}
|
||||
<option {% if choice.selected %}selected{% endif %} value="{{ choice.query_string|iriencode }}">{{ choice.display }}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user