<small id='9sL11'></small><noframes id='9sL11'>

      <legend id='9sL11'><style id='9sL11'><dir id='9sL11'><q id='9sL11'></q></dir></style></legend>

      1. <i id='9sL11'><tr id='9sL11'><dt id='9sL11'><q id='9sL11'><span id='9sL11'><b id='9sL11'><form id='9sL11'><ins id='9sL11'></ins><ul id='9sL11'></ul><sub id='9sL11'></sub></form><legend id='9sL11'></legend><bdo id='9sL11'><pre id='9sL11'><center id='9sL11'></center></pre></bdo></b><th id='9sL11'></th></span></q></dt></tr></i><div id='9sL11'><tfoot id='9sL11'></tfoot><dl id='9sL11'><fieldset id='9sL11'></fieldset></dl></div>
        <tfoot id='9sL11'></tfoot>
          <bdo id='9sL11'></bdo><ul id='9sL11'></ul>
      2. 在 Django Admin 中订购多对多字段

        时间:2023-11-07
            <tbody id='yS6ak'></tbody>

          <tfoot id='yS6ak'></tfoot>

          <small id='yS6ak'></small><noframes id='yS6ak'>

        1. <i id='yS6ak'><tr id='yS6ak'><dt id='yS6ak'><q id='yS6ak'><span id='yS6ak'><b id='yS6ak'><form id='yS6ak'><ins id='yS6ak'></ins><ul id='yS6ak'></ul><sub id='yS6ak'></sub></form><legend id='yS6ak'></legend><bdo id='yS6ak'><pre id='yS6ak'><center id='yS6ak'></center></pre></bdo></b><th id='yS6ak'></th></span></q></dt></tr></i><div id='yS6ak'><tfoot id='yS6ak'></tfoot><dl id='yS6ak'><fieldset id='yS6ak'></fieldset></dl></div>
            <bdo id='yS6ak'></bdo><ul id='yS6ak'></ul>

                <legend id='yS6ak'><style id='yS6ak'><dir id='yS6ak'><q id='yS6ak'></q></dir></style></legend>
                  本文介绍了在 Django Admin 中订购多对多字段的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  Here's my setup:

                  from django.contrib.auth.models import User
                  
                  class Product(models.Model):
                     ...
                     email_users = models.ManyToManyField(User, null=True, blank=True)
                     ...
                  

                  [elsewhere]

                  class ProductAdmin(admin.ModelAdmin):
                     list_display = ('name','platform')
                  
                  admin.site.register(Product, ProductAdmin)
                  

                  My main problem is, when I'm viewing the "Product" page in the admin section, email users are not being being ordered by their ID by default, and I'd like that to be ordered by their username.

                  From what I've read so far, it seems like I need to be adding:

                     email_users.admin_order_field = 'xxxx'
                  

                  But I'm not quite sure what the syntax is to access the username.

                  解决方案

                  The answer was referred to in Hao Lian's comment above, essentially, this is what needed to be done:

                  class ProductAdminForm(ModelForm):
                     email_users = forms.ModelMultipleChoiceField(queryset=User.objects.order_by('username'))
                  
                     class Meta:
                        model = Product
                  
                  class ProductAdmin(admin.ModelAdmin):
                     list_display = ('name','platform')
                     form = ProductAdminForm
                  
                  admin.site.register(Product, ProductAdmin)
                  

                  Mine was slightly different in the sense that I required the forms.ModelMultipleChoiceField, whereas the answer provided used forms.ModelChoiceField()

                  这篇关于在 Django Admin 中订购多对多字段的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:django-admin.py:找不到命令(bluehost 服务器) 下一篇:在 Django Admin 中使用内联 OneToOneField

                  相关文章

                • <legend id='KUlaL'><style id='KUlaL'><dir id='KUlaL'><q id='KUlaL'></q></dir></style></legend>
                    <bdo id='KUlaL'></bdo><ul id='KUlaL'></ul>
                  <i id='KUlaL'><tr id='KUlaL'><dt id='KUlaL'><q id='KUlaL'><span id='KUlaL'><b id='KUlaL'><form id='KUlaL'><ins id='KUlaL'></ins><ul id='KUlaL'></ul><sub id='KUlaL'></sub></form><legend id='KUlaL'></legend><bdo id='KUlaL'><pre id='KUlaL'><center id='KUlaL'></center></pre></bdo></b><th id='KUlaL'></th></span></q></dt></tr></i><div id='KUlaL'><tfoot id='KUlaL'></tfoot><dl id='KUlaL'><fieldset id='KUlaL'></fieldset></dl></div>

                • <tfoot id='KUlaL'></tfoot>

                  <small id='KUlaL'></small><noframes id='KUlaL'>