diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-11-28 17:09:34 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-02-19 14:45:56 +0100 |
commit | 85108e2ecf8fd38453e5ac0cb7a25d1c169cdb3b (patch) | |
tree | f508182f5ec001d868d8ad0ae55848ac8595aafb /ishtar_common/models.py | |
parent | 80c491d145cad911099c88fb1bc10d1bd4b6db9b (diff) | |
download | Ishtar-85108e2ecf8fd38453e5ac0cb7a25d1c169cdb3b.tar.bz2 Ishtar-85108e2ecf8fd38453e5ac0cb7a25d1c169cdb3b.zip |
✨ site profile: ability to set default localisation for treatments
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r-- | ishtar_common/models.py | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py index 2f103ab06..dc3c5d29a 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -1166,7 +1166,19 @@ class IshtarSiteProfile(models.Model, Cached): no_context_button = models.ForeignKey( "archaeological_context_records.ContextRecord", verbose_name=_("Context record for no context button"), - help_text=_('If provided a button is displayed on find add page to create a "No context" find'), + help_text=_('If provided, a button is displayed on find add page to ' + 'create a "No context" find'), + on_delete=models.SET_NULL, + null=True, + blank=True + ) + default_location_for_treatment = models.ForeignKey( + "archaeological_warehouse.Warehouse", + verbose_name=_("Default location for treatments"), + help_text=_("If provided, treatment forms have by default this " + "location set. Furthermore if this location has " + "an organization attached, this organization is set " + "by default."), on_delete=models.SET_NULL, null=True, blank=True |