Changes between Initial Version and Version 2 of Ticket #29982


Ignore:
Timestamp:
Nov 23, 2018, 6:32:32 PM (5 years ago)
Author:
Tim Graham
Comment:

I haven't been able to reproduce this. Could you give a minimal project that demonstrates the issue? Ideally, you could also bisect to find the commit where the behavior changed.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #29982

    • Property Component Uncategorizedcontrib.admin
    • Property Summary django model admin fields option has incorrect html viewChange form fields don't appear on the same as requested in ModelAdmin.fields
  • Ticket #29982 – Description

    initial v2  
    77@admin.register(Orders)
    88class OrdersAdmin(admin.ModelAdmin):
    9     list_display = ('customer', 'contact_pers', 'get_email',
    10                     'order_number', 'order_date', 'products_list',
    11                     'is_add_lic', 'contractor', 'partner')
    129    fields = ('customer', ('order_number', 'order_date'), 'payment_day',
    1310              'products', 'contact_pers', 'contractor', 'is_add_lic',
Back to Top