Changes between Initial Version and Version 2 of Ticket #29982
- Timestamp:
- Nov 23, 2018, 6:32:32 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29982
- Property Component Uncategorized → contrib.admin
- Property Summary django model admin fields option has incorrect html view → Change form fields don't appear on the same as requested in ModelAdmin.fields
-
Ticket #29982 – Description
initial v2 7 7 @admin.register(Orders) 8 8 class OrdersAdmin(admin.ModelAdmin): 9 list_display = ('customer', 'contact_pers', 'get_email',10 'order_number', 'order_date', 'products_list',11 'is_add_lic', 'contractor', 'partner')12 9 fields = ('customer', ('order_number', 'order_date'), 'payment_day', 13 10 'products', 'contact_pers', 'contractor', 'is_add_lic',