diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-11-10 17:20:01 +0100 | 
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-11-10 17:20:01 +0100 | 
| commit | 9e8708f22e4f1265bb89c65496a0d4bae21a9cdc (patch) | |
| tree | 5af06729ecc00c740f127d5fd57d1c383efb4e90 /archaeological_context_records/models.py | |
| parent | 097c8162391f62489d94ffc92b6c81549d0b547c (diff) | |
| download | Ishtar-9e8708f22e4f1265bb89c65496a0d4bae21a9cdc.tar.bz2 Ishtar-9e8708f22e4f1265bb89c65496a0d4bae21a9cdc.zip | |
Models: generic images with m2m relations with main items
Diffstat (limited to 'archaeological_context_records/models.py')
| -rw-r--r-- | archaeological_context_records/models.py | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/archaeological_context_records/models.py b/archaeological_context_records/models.py index 925a48597..dde661ee7 100644 --- a/archaeological_context_records/models.py +++ b/archaeological_context_records/models.py @@ -33,7 +33,7 @@ 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, \ -    ImageModel, post_save_cache, ValueGetter, BulkUpdatedItem +    ImageModel, post_save_cache, ValueGetter, BulkUpdatedItem, IshtarImage  from archaeological_operations.models import Operation, Period, Parcel @@ -302,6 +302,8 @@ class ContextRecord(BulkUpdatedItem, BaseHistorizedItem,      point_2d = models.PointField(_(u"Point (2D)"), blank=True, null=True)      point = models.PointField(_(u"Point (3D)"), blank=True, null=True, dim=3)      polygon = models.PolygonField(_(u"Polygon"), blank=True, null=True) +    images = models.ManyToManyField(IshtarImage, verbose_name=_(u"Images"), +                                    blank=True)      cached_label = models.TextField(_(u"Cached name"), null=True, blank=True,                                      db_index=True)      PARENT_SEARCH_VECTORS = ['operation'] | 
