<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 中订购多对多字段

        Ordering a Many-To-Many field in Django Admin(在 Django Admin 中订购多对多字段)
            <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 中订购多对多字段的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  What happens when you compare 2 pandas Series(当你比较 2 个 pandas 系列时会发生什么)
                  Quickly find differences between two large text files(快速查找两个大文本文件之间的差异)
                  Python - Compare 2 files and output differences(Python - 比较 2 个文件和输出差异)
                  Why do comparisions between very large float values fail in python?(为什么在 python 中非常大的浮点值之间的比较会失败?)
                  Dictionary merge by updating but not overwriting if value exists(字典通过更新合并,但如果值存在则不覆盖)
                  Find entries of one text file in another file in python(在python中的另一个文件中查找一个文本文件的条目)

                • <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>

                          <tbody id='KUlaL'></tbody>

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