summaryrefslogtreecommitdiff
path: root/archaeological_operations/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'archaeological_operations/models.py')
-rw-r--r--archaeological_operations/models.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py
index e74d02647..ba82d4fe7 100644
--- a/archaeological_operations/models.py
+++ b/archaeological_operations/models.py
@@ -177,9 +177,9 @@ 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',
+ 'associated_file_short_label']
IMAGE_PREFIX = 'operations/'
SLUG = 'operation'
@@ -200,7 +200,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 +230,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)"),