Django管理员 – 如何获取模板中的所有注册模型?

前端之家收集整理的这篇文章主要介绍了Django管理员 – 如何获取模板中的所有注册模型?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在编写一个自定义管理员资料,需要在管理员中获得所有注册的模型.这可能吗?我需要它在管理员索引页面上进行一些自定义视图.

解决方法

您可以访问Model-> ModelAdmin的admin.site._registry dict:
>>> ./manage.py shell

In [1]: from urls import * # load admin

In [2]: from django.contrib import admin

In [3]: admin.site._registry
Out[3]: 
{django.contrib.auth.models.Group: <django.contrib.auth.admin.GroupAdmin at 0x22629d0>,django.contrib.auth.models.User: <django.contrib.auth.admin.UserAdmin at 0x2262a10>,django.contrib.sites.models.Site: <django.contrib.sites.admin.SiteAdmin at 0x2262c90>,testapp.models.Up: <django.contrib.admin.options.ModelAdmin at 0x2269c10>,nashvegas.models.Migration: <nashvegas.admin.MigrationAdmin at 0x2262ad0>}

这是管理员索引视图的作用:

@never_cache
def index(self,request,extra_context=None):
    """ 
    Displays the main admin index page,which lists all of the installed
    apps that have been registered in this site.
    """
    app_dict = {}
    user = request.user
    for model,model_admin in self._registry.items():
        # ...

请注意,以下划线为前缀的变量可能会在将来的django版本中发生更改.

原文链接:https://www.f2er.com/python/185658.html

猜你在找的Python相关文章