diff options
| -rw-r--r-- | archaeological_finds/models_finds.py | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/archaeological_finds/models_finds.py b/archaeological_finds/models_finds.py index c8903fc10..8f0270236 100644 --- a/archaeological_finds/models_finds.py +++ b/archaeological_finds/models_finds.py @@ -325,7 +325,7 @@ class Find(BaseHistorizedItem, ImageModel, OwnPerms, ShortMenuItem):      TABLE_COLS_FOR_OPE = [          'base_finds__cache_short_id',          'base_finds__cache_complete_id', -        'previous_id', 'label', 'material_types', +        'previous_id', 'label', 'material_types__label',          'datings__period__label', 'find_number', 'object_types',          'container__cached_label',          'description', @@ -334,6 +334,7 @@ class Find(BaseHistorizedItem, ImageModel, OwnPerms, ShortMenuItem):      COL_LABELS = {          'datings__period__label': _(u"Periods"),          'container__cached_label': _(u"Container"), +        'material_types__label': _(u"Material types"),      }      EXTRA_FULL_FIELDS = [ | 
