diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-09-21 00:26:03 +0200 | 
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-09-21 00:26:03 +0200 | 
| commit | 0cd398940a316afe8fc7ec2b0102c793c3f4342b (patch) | |
| tree | fe78f8109bbae1e761e79bdd7998f639d895f640 /archaeological_context_records/models.py | |
| parent | f46de1b6d4cbf832ce6f22fe82a5377b5e0ed6a4 (diff) | |
| download | Ishtar-0cd398940a316afe8fc7ec2b0102c793c3f4342b.tar.bz2 Ishtar-0cd398940a316afe8fc7ec2b0102c793c3f4342b.zip  | |
Generic manner of managing external id
Diffstat (limited to 'archaeological_context_records/models.py')
| -rw-r--r-- | archaeological_context_records/models.py | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/archaeological_context_records/models.py b/archaeological_context_records/models.py index 8dd082e7b..2f02ed9df 100644 --- a/archaeological_context_records/models.py +++ b/archaeological_context_records/models.py @@ -32,8 +32,8 @@ from ishtar_common.utils import cached_label_changed  from ishtar_common.models import GeneralType, BaseHistorizedItem, \      HistoricalRecords, OwnPerms, ShortMenuItem, Source, GeneralRelationType,\ -    GeneralRecordRelations, post_delete_record_relation, get_external_id, \ -    ImageModel, post_save_cache, ValueGetter, BulkUpdatedItem, ExternalIdManager +    GeneralRecordRelations, post_delete_record_relation, \ +    ImageModel, post_save_cache, ValueGetter, BulkUpdatedItem  from archaeological_operations.models import Operation, Period, Parcel @@ -189,7 +189,7 @@ class CRBulkView(object):      """ -class ContextRecord(ExternalIdManager, BulkUpdatedItem, BaseHistorizedItem, +class ContextRecord(BulkUpdatedItem, BaseHistorizedItem,                      ImageModel, OwnPerms, ValueGetter, ShortMenuItem):      SHOW_URL = 'show-contextrecord'      SLUG = 'contextrecord'  | 
