Changes between Initial Version and Version 1 of Ticket #34651
- Timestamp:
- Jun 13, 2023, 10:09:09 AM (17 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #34651
- Property Resolution → invalid
- Property Status new → closed
-
Ticket #34651 – Description
initial v1 2 2 3 3 For a single file it works fine 4 4 {{{ 5 5 from .models import ServiceOrder, MaintenanceService 6 6 from django.contrib import admin … … 31 31 ordering = ('description', 'value', 'type_service', 'is_minimum_rate', 'minimum_rate_value', 'registration_date') 32 32 list_per_page = 10 33 33 }}} 34 34 But when I try to do it for multiples I get this error: 'list' object has no attribute '_committed' 35 35 {{{ 36 36 from .models import ServiceOrder, MaintenanceService 37 37 from django.contrib import admin … … 100 100 ordering = ('description', 'value', 'type_service', 'is_minimum_rate', 'minimum_rate_value', 'registration_date') 101 101 list_per_page = 10 102 }}}