django:admin.StackedInline显示全名而不是用户名

发布于 2024-09-14 22:10:29 字数 544 浏览 4 评论 0原文

我的内联:

class CollaboratorInLine(admin.StackedInline):
    model = Collaborator
    extra = 0

我的模型:

class Collaborator(models.Model):
    report = models.ForeignKey(Report)
    collaborator = models.ForeignKey(User, limit_choices_to={'groups__name':u'team1'})
    def reutnName(self):
        return self.collaborator.get_full_name()

    def __unicode__(self):
        return self.collaborator.get_full_name()

内联协作者显示为下拉列表,并且 ppl 显示为用户名而不是全名。 有谁知道如何将其更改为全名吗?

谢谢

my inline:

class CollaboratorInLine(admin.StackedInline):
    model = Collaborator
    extra = 0

my model:

class Collaborator(models.Model):
    report = models.ForeignKey(Report)
    collaborator = models.ForeignKey(User, limit_choices_to={'groups__name':u'team1'})
    def reutnName(self):
        return self.collaborator.get_full_name()

    def __unicode__(self):
        return self.collaborator.get_full_name()

The inline collaborator is shown as a drop downlist, and the ppl are shown as usernames intead of full names.
does anyone know how to change it to full name?

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

单挑你×的.吻 2024-09-21 22:10:29

我使用 formfield_for_manytomany 和 formfield_for_foreignkey 得到它
我以为它们只能在 modeladmin 中使用,但它也可以用于 StackedInline
:)

i got it using formfield_for_manytomany and formfield_for_foreignkey
i thought they could only be used in modeladmin, but it could also be used for StackedInline
:)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文