diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-06-22 13:33:41 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-06-22 13:33:41 +0200 |
commit | 5e26d52a6268f2aa04d82108431463b184d45cb7 (patch) | |
tree | 1d5f2587ea0e57815e2c047529709771adbef4d8 /archaeological_operations/models.py | |
parent | 43ed9eb077e0d24b4ff0906fce1d147887946887 (diff) | |
download | Ishtar-5e26d52a6268f2aa04d82108431463b184d45cb7.tar.bz2 Ishtar-5e26d52a6268f2aa04d82108431463b184d45cb7.zip |
Operation source: show index on table and sheet
Diffstat (limited to 'archaeological_operations/models.py')
-rw-r--r-- | archaeological_operations/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py index 3a7586e59..ab6b3abac 100644 --- a/archaeological_operations/models.py +++ b/archaeological_operations/models.py @@ -517,7 +517,7 @@ class OperationSource(Source): related_name="source") index = models.IntegerField(verbose_name=_(u"Index"), blank=True, null=True) - TABLE_COLS = ['operation.year', 'operation.operation_code'] + \ + TABLE_COLS = ['operation.year', 'operation.operation_code', 'index'] + \ Source.TABLE_COLS SHOW_URL = 'show-operationsource' MODIFY_URL = 'operation_source_modify' |