diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-05-11 12:33:54 +0200 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-06-12 08:44:18 +0200 |
| commit | 83d4e47b7e0ee3946e07d1c5de04597a06613cf0 (patch) | |
| tree | 67981f597f7b7a98b782d2db02687d83f1024772 /archaeological_finds/models_finds.py | |
| parent | 3d12b0ac2e97ab43a555106f404ed7cf442caf17 (diff) | |
| download | Ishtar-83d4e47b7e0ee3946e07d1c5de04597a06613cf0.tar.bz2 Ishtar-83d4e47b7e0ee3946e07d1c5de04597a06613cf0.zip | |
Migrate single image to M2M (refs #4076)
Diffstat (limited to 'archaeological_finds/models_finds.py')
| -rw-r--r-- | archaeological_finds/models_finds.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/archaeological_finds/models_finds.py b/archaeological_finds/models_finds.py index dcf542f79..2b903e66a 100644 --- a/archaeological_finds/models_finds.py +++ b/archaeological_finds/models_finds.py @@ -32,7 +32,7 @@ from django.utils.translation import ugettext_lazy as _ from ishtar_common.data_importer import post_importer_action, ImporterError from ishtar_common.utils import cached_label_changed, post_save_point -from ishtar_common.models import GeneralType, HierarchicalType, ImageModel, \ +from ishtar_common.models import GeneralType, HierarchicalType, \ BaseHistorizedItem, ShortMenuItem, LightHistorizedItem, \ HistoricalRecords, OwnPerms, Source, Person, Basket, post_save_cache, \ ValueGetter, get_current_profile, IshtarImage, ThroughImage @@ -580,8 +580,8 @@ class FBulkView(object): """ -class Find(BulkUpdatedItem, ValueGetter, BaseHistorizedItem, ImageModel, - OwnPerms, ShortMenuItem): +class Find(BulkUpdatedItem, ValueGetter, BaseHistorizedItem, OwnPerms, + ShortMenuItem): EXTERNAL_ID_KEY = 'find_external_id' CHECK_DICT = dict(CHECK_CHOICES) SHOW_URL = 'show-find' |
