8

Django Docs声明您可以在管理界面中为只读字段输出自定义 HTML。这正是我需要的,但它似乎不起作用。

在 admin.py 中:

from django.contrib import admin

class ExampleAdmin(admin.ModelAdmin):
    readonly_fields = ('myfield', )

    def myfield(self, instance):
        print 'This part of the code is never reached!'
        return u'<b>My custom html for the readonly field!</b>'

    myfield.allow_tags = True

admin.site.register(State, StateAdmin)

在模型.py 中:

class State(models.Model):
    myfield = MyCustomField()
    ... etc ...

class MyCustomField(models.TextField):
    def to_python(self, value):
        ... etc ...

该字段在管理员编辑页面上显示为只读。但是,永远不会调用应该创建自定义 html 的“myfield”方法。

有人知道我做错了什么吗?

亲切的问候,

帕特里克

4

2 回答 2

14

查看“django/contrib/admin/util.py”文件的lookup_field方法,这似乎是预期的行为。这是您正在使用的代码:

readonly_fields = ('myfield', )

由于myfield是模型中定义的实际字段,因此将其放入readonly_fields只会使其不可编辑;它不允许您自定义向用户显示的内容。为此,您必须提供readonly_fields一些不是实际字段的内容,例如myfield_readonly. 然后,您必须将您ModelAdminmyfield方法重命名为myfield_readonly,当然,以及myfield.allow_tags = True. 您可能还想添加myfield_readonly.short_description = 'My Field'. 最后,您需要使用或将实际myfield字段留在表单之外。excludefields

于 2013-02-17T04:35:08.403 回答
0

readonly 方法可能令人讨厌的另一件事是它消除了错误。所以,如果你有类似的东西

def readonly_field(self, instance):
    errored_calcuated_value = self.kek * instance.peck
    print('wut', errored_calcuated_value)
    return errored_calcuated_value

它既不打印也不工作。

于 2018-09-15T10:09:35.493 回答