面包屑在管理模型编辑器中显示“[object 名称] object”
Breadcrumb displaying "[object name] object" in adminmodel editor
我的系统中有一个新的 AdminModel,但面包屑显示 "StatementTemplate object" 作为编辑器页面的标题。我只想让面包屑导航显示为 "Statement Template",但我不确定应该在 AdminModel 上设置什么设置才能使其正常工作
想法?
面包屑显示对象的名称,或对象上的内容 __str__()
returns。如果您编辑模型以便 __str__()
returns 更有意义的内容,它将显示在管理面包屑中。
# in models.py
class StatementTemplate(models.Model):
...
def __str__(self):
return "StatementTemplate" # or make it some description of that particular object
我的系统中有一个新的 AdminModel,但面包屑显示 "StatementTemplate object" 作为编辑器页面的标题。我只想让面包屑导航显示为 "Statement Template",但我不确定应该在 AdminModel 上设置什么设置才能使其正常工作
想法?
面包屑显示对象的名称,或对象上的内容 __str__()
returns。如果您编辑模型以便 __str__()
returns 更有意义的内容,它将显示在管理面包屑中。
# in models.py
class StatementTemplate(models.Model):
...
def __str__(self):
return "StatementTemplate" # or make it some description of that particular object