diff options
| author | Valérie-Emma Leroux <valerie-emma.leroux@iggdrasil.net> | 2018-03-01 19:42:15 +0100 | 
|---|---|---|
| committer | Valérie-Emma Leroux <valerie-emma.leroux@iggdrasil.net> | 2018-03-01 19:42:15 +0100 | 
| commit | a28bd4c90f7d766f5e54a56a426695f752c03dea (patch) | |
| tree | 37498a449519156ced3da0ca8bf595d7985e0154 | |
| parent | 5a7d2e35af6b15e06d18b35218ff1f7fe5bf923c (diff) | |
| download | Ishtar-a28bd4c90f7d766f5e54a56a426695f752c03dea.tar.bz2 Ishtar-a28bd4c90f7d766f5e54a56a426695f752c03dea.zip | |
Update finds cols
| -rw-r--r-- | archaeological_finds/models_finds.py | 6 | 
1 files changed, 2 insertions, 4 deletions
| diff --git a/archaeological_finds/models_finds.py b/archaeological_finds/models_finds.py index bbd9ff7e6..48cab29ab 100644 --- a/archaeological_finds/models_finds.py +++ b/archaeological_finds/models_finds.py @@ -559,15 +559,13 @@ class Find(BulkUpdatedItem, ValueGetter, BaseHistorizedItem, ImageModel,      SLUG = 'find'      TABLE_COLS = ['external_id', 'label', 'base_finds__context_record__parcel__town__name',                    'base_finds__context_record__operation__common_name', -                  'base_finds__context_record__parcel',                    'base_finds__context_record__label',                    'material_types__label', 'object_types__label',                    'datings__period__label', -                  'container__cached_label', -                  'base_finds__batch', ] +                  'container__cached_label', ]      if settings.COUNTRY == 'fr':          TABLE_COLS.insert( -            2, 'base_finds__context_record__operation__code_patriarche') +            3, 'base_finds__context_record__operation__code_patriarche')      TABLE_COLS_FOR_OPE = [          'base_finds__cache_short_id',          'base_finds__cache_complete_id', | 
