以下是我的模特
class Note():
note = models.TextField(null=False, blank=False, editable=True)
user = models.ForeignKey(to=User, null=True, blank=True)
content_type = models.ForeignKey(ContentType, on_delete=models.CASCADE)
object_id = models.PositiveIntegerField()
content_object = GenericForeignKey("content_type", "object_id")
内联我创建此模型以合并到任何管理员下面
class NoteInline(GenericTabularInline):
model = Note
extra = 0
我需要的是,我想看到所有当前的笔记,但不希望登录用户编辑它们。目前,用户可以编辑旧版并添加新内容。所以这就是我所做的,
class NoteInline(GenericTabularInline):
model = Note
extra = 0
def get_readonly_fields(self, request, obj=None):
if obj and 'change' in request.resolver_match.url_name:
return ['note', 'user', ]
else:
return []
但是现在如果用户添加新笔记,他会看到一个禁用(不可编辑)的笔记文本。但是,用户可以看到旧字段不可编辑。
如何实现此功能?
答案 0 :(得分:1)
我有同样的询问。
但是,我不在乎内联中的字段是否为“只读”。我只是不想在创建后改变它们。
为此,我在forms.py中创建了一个NoteForm
,如果实例在初始数据时发生了更改,则会引发验证错误:
class NoteForm(forms.ModelForm):
def clean(self):
if self.has_changed() and self.initial:
raise ValidationError(
'You cannot change this inline',
code='Forbidden'
)
return super().clean()
class Meta(object):
model = Note
fields='__all__'
admin.py:
class NoteInline(GenericTabularInline):
model = Note
extra = 0
form = NoteForm