Django admin change_list视图获取ChangeList queryset - 比我的猴子补丁更好的解决方案

时间:2012-04-10 15:37:57

标签: django django-admin

我需要在django admin中获取更改列表视图查询集。目前,我有这个猴子补丁,它提出了4个额外的查询,所以我正在寻找更好的解决方案。

我的观点是:我想将一些额外的值传递给django admin change_list.html模板,这是我从创建查询中得到的。对于那些查询,我需要在django admin changelist视图中使用的查询集,其中应用了请求过滤器。这是我看到的过滤,订购等相同的数据。我想根据这些数据制作图表。

你了解我吗?感谢

#admin.py
from django.contrib.admin.views.main import ChangeList

class TicketAdmin(admin.ModelAdmin):

    def changelist_view(self, request, extra_context=None):

        cl = ChangeList(request, 
                        self.model, 
                        self.list_display, 
                        self.list_display_links, 
                        self.list_filter, 
                        self.date_hierarchy, 
                        self.search_fields, 
                        self.list_select_related, 
                        self.list_per_page,
                        self.list_max_show_all, 
                        self.list_editable, 
                        self) # 3 extra queries
        filtered_query_set = cl.get_query_set(request) # 1 extra query

        currencies_count = filtered_query_set.values('bookmaker__currency').distinct().count()

        extra_context = {
            'currencies_count': currencies_count,
        }
        return super(TicketAdmin, self).changelist_view(request, extra_context=extra_context)

1 个答案:

答案 0 :(得分:13)

我不知道这是否能回答您的问题,但是课程ChangeList有一个名为query_set的属性(您可以在这里找到代码https://github.com/django/django/blob/master/django/contrib/admin/views/main.py)已包含查询集。< / p>

BTW changelist_view()函数(https://github.com/django/django/blob/master/django/contrib/admin/options.py处的来源)返回TemplateResponsehttps://github.com/django/django/blob/master/django/template/response.py来源),其中包含一个名为context_data的变量,指向上下文。您可以尝试扩展此变量的内容。

下面是未经测试的代码

class TicketAdmin(admin.ModelAdmin):

    def changelist_view(self, request, extra_context=None):
        response = super(TicketAdmin, self).changelist_view(request, extra_context)
        filtered_query_set = response.context_data["cl"].queryset

        currencies_count = filtered_query_set.values('bookmaker__currency').distinct().count()
        extra_context = {
             'currencies_count': currencies_count,
        }
        response.context_data.update(extra_context)

        return response