我想在change_form页面上的admin中单击一个只读URL字段。我尝试了一个小部件,但很快就意识到小部件仅用于表单字段。所以,在我尝试用jQuery解决这个问题之前(查找和替换或者其他东西),我想知道在python中是否有更优雅的解决方案。有什么想法吗?
答案 0 :(得分:16)
老问题,但仍然值得回答。
Ref the doc,
readonly_fields
现在也支持这些自定义方式,就像评论中发布的the link一样:
def the_callable(obj):
return u'<a href="#">link from the callable for {0}</a>'.format(obj)
the_callable.allow_tags = True
class SomeAdmin(admin.ModelAdmin):
def the_method_in_modeladmin(self, obj):
return u'<a href="#">link from the method of modeladmin for {0}</a>'.format(obj)
the_method_in_modeladmin.allow_tags = True
readonly_fields = (the_callable, 'the_method_in_modeladmin', 'the_callable_on_object')
ObjModel.the_callable_on_object = lambda self, obj: u'<a href="#">link from the callable of the instance </a>'.format(obj)
ObjModel.the_callable_on_object.__func__.allow_tags = True
上面的代码会在其更改表单页面中呈现三个只读字段。
答案 1 :(得分:2)
我按照okm提供的链接,我设法在更改表单页面中包含一个可点击的链接。
我的解决方案(添加到admin.ModelAdmin,而不是models.model)
readonly_fields = ('show_url',)
fields = ('show_url',)
def show_url(self, instance):
return '<a href="%s">%s</a>' % ('ACTUAL_URL' + CUSTOM_VARIABLE, 'URL_DISPLAY_STRING')
show_url.short_description = 'URL_LABEL'
show_url.allow_tags = True
答案 2 :(得分:2)
更新的答案可以在this post中找到。
它使用format_html
utility,因为allow_tags
已被弃用。
ModelAdmin.readonly_fields的文档也非常有用。
from django.utils.html import format_html
from django.contrib import admin
class SomeAdmin(admin.ModelAdmin):
readonly_fields = ('my_clickable_link',)
def my_clickable_link(self, instance):
return format_html(
'<a href="{0}" target="_blank">{1}</a>',
instance.<link-field>,
instance.<link-field>,
)
my_clickable_link.short_description = "Click Me"