Changes between Initial Version and Version 1 of Ticket #34651


Ignore:
Timestamp:
Jun 13, 2023, 10:09:09 AM (16 months ago)
Author:
Mariusz Felisiak
Comment:

Please use one of support channels. Trac is not one of them.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #34651

    • Property Resolutioninvalid
    • Property Status newclosed
  • Ticket #34651 – Description

    initial v1  
    22
    33For a single file it works fine
    4 
     4{{{
    55from .models import ServiceOrder, MaintenanceService
    66from django.contrib import admin
     
    3131     ordering = ('description', 'value', 'type_service', 'is_minimum_rate', 'minimum_rate_value', 'registration_date')
    3232     list_per_page = 10
    33 
     33}}}
    3434But when I try to do it for multiples I get this error: 'list' object has no attribute '_committed'
    35 
     35{{{
    3636from .models import ServiceOrder, MaintenanceService
    3737from django.contrib import admin
     
    100100     ordering = ('description', 'value', 'type_service', 'is_minimum_rate', 'minimum_rate_value', 'registration_date')
    101101     list_per_page = 10
     102}}}
Back to Top