diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-03-01 23:53:53 +0100 | 
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-03-01 23:53:53 +0100 | 
| commit | a269e6a191388738b05adcd1b0e629c2c4ad586c (patch) | |
| tree | dd206d6853b4809b0b0e7a9d6df61412642f5652 | |
| parent | 2434fb41ed4c1a1be96bb49dd1977651470de70a (diff) | |
| parent | a28bd4c90f7d766f5e54a56a426695f752c03dea (diff) | |
| download | Ishtar-a269e6a191388738b05adcd1b0e629c2c4ad586c.tar.bz2 Ishtar-a269e6a191388738b05adcd1b0e629c2c4ad586c.zip | |
Merge branch 'develop' of git.iggdrasil.net:/srv/git/ishtar into develop
| -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', | 
