diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2020-11-24 16:02:37 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-02-28 12:15:21 +0100 |
commit | a9e3eee6ac90e7811a629b46c14d498e74fe8738 (patch) | |
tree | dedb38403e31ca328af9ede9df84b61b05a4846e /ishtar_common/models.py | |
parent | aa4216bbf0de8dba9a5050e6ec126fe9aac1bf9e (diff) | |
download | Ishtar-a9e3eee6ac90e7811a629b46c14d498e74fe8738.tar.bz2 Ishtar-a9e3eee6ac90e7811a629b46c14d498e74fe8738.zip |
Admin: fix profile edition
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r-- | ishtar_common/models.py | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py index 08009bb41..5a28aaffe 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -807,21 +807,21 @@ class IshtarSiteProfile(models.Model, Cached): ) operation_complete_identifier = models.TextField( _("Operation complete identifier"), - default="", + default="", blank=True, help_text=_("Formula to manage operation complete identifier.")) operation_custom_index = models.TextField( _("Operation custom index key"), - default="", + default="", blank=True, help_text=_("Keys to be used to manage operation custom index. " "Separate keys with a semicolon.")) site_complete_identifier = models.TextField( _("Archaeological site complete identifier"), - default="", + default="", blank=True, help_text=_("Formula to manage archaeological site complete" " identifier.")) site_custom_index = models.TextField( _("Archaeological site custom index key"), - default="", + default="", blank=True, help_text=_("Key to be used to manage archaeological site custom " "index. Separate keys with a semicolon.")) file_external_id = models.TextField( @@ -833,12 +833,12 @@ class IshtarSiteProfile(models.Model, Cached): "data can be destructive.")) file_complete_identifier = models.TextField( _("Archaeological file complete identifier"), - default="", + default="", blank=True, help_text=_("Formula to manage archaeological file complete " "identifier.")) file_custom_index = models.TextField( _("Archaeological file custom index key"), - default="", + default="", blank=True, help_text=_("Key to be used to manage archaeological file custom " "index. Separate keys with a semicolon.")) parcel_external_id = models.TextField( @@ -858,11 +858,11 @@ class IshtarSiteProfile(models.Model, Cached): "data can be destructive.")) contextrecord_complete_identifier = models.TextField( _("Context record complete identifier"), - default="", + default="", blank=True, help_text=_("Formula to manage context record complete identifier.")) contextrecord_custom_index = models.TextField( _("Context record custom index key"), - default="", + default="", blank=True, help_text=_("Key to be used to manage context record custom index. " "Separate keys with a semicolon.")) base_find_external_id = models.TextField( @@ -874,11 +874,11 @@ class IshtarSiteProfile(models.Model, Cached): "data can be destructive.")) basefind_complete_identifier = models.TextField( _("Base find complete identifier"), - default="", + default="", blank=True, help_text=_("Formula to manage base find complete identifier.")) basefind_custom_index = models.TextField( _("Base find custom index key"), - default="", + default="", blank=True, help_text=_("Key to be used to manage base find custom index. " "Separate keys with a semicolon.")) find_external_id = models.TextField( @@ -890,11 +890,11 @@ class IshtarSiteProfile(models.Model, Cached): "data can be destructive.")) find_complete_identifier = models.TextField( _("Find complete identifier"), - default="", + default="", blank=True, help_text=_("Formula to manage find complete identifier.")) find_custom_index = models.TextField( _("Find custom index key"), - default="", + default="", blank=True, help_text=_("Key to be used to manage find custom index. " "Separate keys with a semicolon.")) container_external_id = models.TextField( @@ -907,11 +907,11 @@ class IshtarSiteProfile(models.Model, Cached): "data can be destructive.")) container_complete_identifier = models.TextField( _("Container complete identifier"), - default="", + default="", blank=True, help_text=_("Formula to manage container complete identifier.")) container_custom_index = models.TextField( _("Container custom index key"), - default="", + default="", blank=True, help_text=_("Key to be used to manage container custom index. " "Separate keys with a semicolon.")) warehouse_external_id = models.TextField( @@ -923,11 +923,11 @@ class IshtarSiteProfile(models.Model, Cached): "data can be destructive.")) warehouse_complete_identifier = models.TextField( _("Warehouse complete identifier"), - default="", + default="", blank=True, help_text=_("Formula to manage warehouse complete identifier.")) warehouse_custom_index = models.TextField( _("Warehouse custom index key"), - default="", + default="", blank=True, help_text=_("Key to be used to manage warehouse custom index. " "Separate keys with a semicolon.")) document_external_id = models.TextField( @@ -939,11 +939,11 @@ class IshtarSiteProfile(models.Model, Cached): "data can be destructive.")) document_complete_identifier = models.TextField( _("Document complete identifier"), - default="", + default="", blank=True, help_text=_("Formula to manage document complete identifier.")) document_custom_index = models.TextField( _("Document custom index key"), - default="", + default="", blank=True, help_text=_("Key to be used to manage document custom index. " "Separate keys with a semicolon.")) person_raw_name = models.TextField( |