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 | 3fff5e16d4f24d7ff28126be98531393bae9e49f (patch) | |
tree | dd206d6853b4809b0b0e7a9d6df61412642f5652 | |
parent | d6645588ce1f7a4f39f1a0feb84d0979b1d80ba3 (diff) | |
parent | 0d38f000695d1bbe0a2d66a990734092f99d9004 (diff) | |
download | Ishtar-3fff5e16d4f24d7ff28126be98531393bae9e49f.tar.bz2 Ishtar-3fff5e16d4f24d7ff28126be98531393bae9e49f.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', |