1

我创建了一个自定义SimpleListFilter类(下面的代码)并设法将选项显示为选择输入。我想添加的是 Select2 提供的功能,即能够在选择输入中搜索选项。

谁能告诉我如何实现这一目标?

自定义 SimpleListFilter 类:

class AnswerTreeKnowledgeCodeListFilter(admin.SimpleListFilter):
    template = 'admin/dropdown_filter.html'
    title = _('Kenniscode')

    parameter_name = "knowledge_code"

    def lookups(self, request, model_admin):
        return [(instance.pk, str(instance)) for instance in AnswerTreeRepository.filter_by_level(0)]

    def queryset(self, request, queryset):
        # Custom queryset filtering here

dropdown_filter.html:(从我忘记的源代码复制,所以我不相信这段代码)

{% load i18n %}
<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:" %}
    <li>
    <select class="form-control" style="width: 95%;margin-left: 2%;"
        onchange="go_from_select(this.options[this.selectedIndex].value)">
    {% for choice in choices %}
        <option{% if choice.selected %} selected="selected"{% endif %}
         value="{{ choice.query_string|iriencode }}">{{ choice.display }}</option>
    {% endfor %}
    </select>
    </li>
{% else %}

    {% for choice in choices %}
            <li{% if choice.selected %} class="selected"{% endif %}>
            <a href="{{ choice.query_string|iriencode }}">{{ choice.display }}</a></li>
    {% endfor %}

{% endif %}
</ul>
4

1 回答 1

0

如果您使用的是 Django 2 或更高版本,那么 Django Admin Autocomplete Filter 似乎就是您正在寻找的东西。我还没有使用它,但是如果您还没有找到解决方案,这可能值得一试。

https://github.com/farhan0581/django-admin-autocomplete-filter

于 2022-01-31T23:45:06.030 回答