diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-03-09 23:12:48 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-03-09 23:12:48 +0100 |
commit | b22a1a4644932761b64b7f32e16733669659d731 (patch) | |
tree | 9e6123738a6979c154e7ca86fb399e2332fb4ffb /archaeological_operations/models.py | |
parent | cffe9ccf886cd9300b999af989fc19da3e2a5f20 (diff) | |
parent | 54779a8fa14fa5213ef62b85c767545dd4f15257 (diff) | |
download | Ishtar-b22a1a4644932761b64b7f32e16733669659d731.tar.bz2 Ishtar-b22a1a4644932761b64b7f32e16733669659d731.zip |
Merge branch 'v0.9' into wheezy
Diffstat (limited to 'archaeological_operations/models.py')
-rw-r--r-- | archaeological_operations/models.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py index e74d02647..bc2169009 100644 --- a/archaeological_operations/models.py +++ b/archaeological_operations/models.py @@ -177,9 +177,8 @@ class Operation(ClosedItem, BaseHistorizedItem, ImageModel, OwnPerms, ValueGetter, ShortMenuItem, DashboardFormItem): QUALITY_DICT = dict(QUALITY) SHOW_URL = 'show-operation' - TABLE_COLS = ['year_index', 'operation_type', 'remains', 'towns', - 'associated_file_short_label', 'start_date', - 'excavation_end_date'] + TABLE_COLS = ['year', 'towns', 'common_name', 'operation_type', + 'start_date', 'excavation_end_date', 'remains'] IMAGE_PREFIX = 'operations/' SLUG = 'operation' @@ -200,7 +199,6 @@ class Operation(ClosedItem, BaseHistorizedItem, ImageModel, OwnPerms, 'scientific_documentation_comment__icontains', 'abstract': 'abstract__icontains', 'end_date': 'end_date__isnull', - 'year_index': ('year', 'operation_code'), 'start_before': 'start_date__lte', 'start_after': 'start_date__gte', 'end_before': 'excavation_end_date__lte', @@ -231,7 +229,6 @@ class Operation(ClosedItem, BaseHistorizedItem, ImageModel, OwnPerms, EXTRA_FULL_FIELDS_LABELS = { 'full_code_patriarche': u"Code patriarche", - 'year_index': _(u"Year - Index"), 'associated_file_short_label': _(u"Associated file (label)"), 'operator__name': _(u"Operator name"), 'scientist__raw_name': _(u"Scientist (full name)"), |