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

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

                  相关文档推荐

                  groupby multiple coords along a single dimension in xarray(在xarray中按单个维度的多个坐标分组)
                  Group by and Sum in Pandas without losing columns(Pandas中的GROUP BY AND SUM不丢失列)
                  Is there a way of group by month in Pandas starting at specific day number?( pandas 有从特定日期开始的按月分组的方式吗?)
                  Group by + New Column + Grab value former row based on conditionals(GROUP BY+新列+基于条件的前一行抓取值)
                  Groupby and interpolate in Pandas(PANDA中的Groupby算法和插值算法)
                  Pandas - Group Rows based on a column and replace NaN with non-null values(PANAS-基于列对行进行分组,并将NaN替换为非空值)

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