diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-10-19 14:18:30 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-10-24 12:06:09 +0200 |
commit | e55a76aaa16b55177dcd3c1e12e342420b96ba6b (patch) | |
tree | 29f92a2c4caff32bb80907da9d659211f9291e1b /archaeological_context_records/models.py | |
parent | 5bdd184424ed51eaddc642bda549fa7a4ada8710 (diff) | |
download | Ishtar-e55a76aaa16b55177dcd3c1e12e342420b96ba6b.tar.bz2 Ishtar-e55a76aaa16b55177dcd3c1e12e342420b96ba6b.zip |
Manage find basket modification wizard
Diffstat (limited to 'archaeological_context_records/models.py')
-rw-r--r-- | archaeological_context_records/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_context_records/models.py b/archaeological_context_records/models.py index ec79748c7..0aa5c961d 100644 --- a/archaeological_context_records/models.py +++ b/archaeological_context_records/models.py @@ -335,6 +335,7 @@ class ContextRecord(BulkUpdatedItem, BaseHistorizedItem, ] history = HistoricalRecords() + objects = ExternalIdManager() # fields external_id = models.TextField(_(u"External ID"), blank=True, null=True) @@ -411,7 +412,6 @@ class ContextRecord(BulkUpdatedItem, BaseHistorizedItem, blank=True) cached_label = models.TextField(_(u"Cached name"), null=True, blank=True, db_index=True) - objects = ExternalIdManager() class Meta: verbose_name = _(u"Context Record") |