Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{% load i18n %}
{% load i18n custom_tags %}
<script type="text/javascript">var go_from_select = function(opt) { window.location = window.location.pathname + opt };</script>
<h3>{% blocktrans with title as filter_title %} By {{ filter_title }} {% endblocktrans %}</h3>
<ul class="admin-filter-{{ title|cut:' ' }}">
{% if choices|slice:"4:" %}
{% get_setting "DROPDOWN_THRESHOLD" 4 as dropdown_threshold %}
{% if dropdown_threshold <= choices|length %}
<li>
<select class="form-control" style="width: 95%;margin-left: 2%;"
onchange="go_from_select(this.options[this.selectedIndex].value)">
Expand All @@ -20,4 +21,4 @@ <h3>{% blocktrans with title as filter_title %} By {{ filter_title }} {% endbloc
{% endfor %}

{% endif %}
</ul>
</ul>
Empty file.
9 changes: 9 additions & 0 deletions django_admin_listfilter_dropdown/templatetags/custom_tags.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
from django import template
from django.conf import settings

register = template.Library()


@register.simple_tag
def get_setting(value, default=None):
return getattr(settings, value, default)