diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2020-11-17 15:37:22 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-02-28 12:15:21 +0100 |
commit | 53f899c9ded29921c982e67f220716b2f86823f3 (patch) | |
tree | e983fd246f6fd2ce0e9521ea23c1f93c73cc8bc9 /archaeological_warehouse/models.py | |
parent | 9667957457eaf024e1b4a40f5d04ae001c4eeaca (diff) | |
download | Ishtar-53f899c9ded29921c982e67f220716b2f86823f3.tar.bz2 Ishtar-53f899c9ded29921c982e67f220716b2f86823f3.zip |
Manage a "custom_index" for base types
Diffstat (limited to 'archaeological_warehouse/models.py')
-rw-r--r-- | archaeological_warehouse/models.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/archaeological_warehouse/models.py b/archaeological_warehouse/models.py index 5ae4de5a0..872cc1d68 100644 --- a/archaeological_warehouse/models.py +++ b/archaeological_warehouse/models.py @@ -610,8 +610,9 @@ class ContainerTree(models.Model): db_table = 'containers_tree' -class Container(DocumentItem, Merge, LightHistorizedItem, CompleteIdentifierItem, GeoItem, - OwnPerms, MainItem, DivisionContainer, ValueGetter): +class Container(DocumentItem, Merge, LightHistorizedItem, + CompleteIdentifierItem, GeoItem, OwnPerms, MainItem, + DivisionContainer, ValueGetter): SLUG = 'container' APP = "archaeological-warehouse" MODEL = "container" |