diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2023-11-28 13:11:44 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2023-11-28 13:16:33 +0100 |
commit | 81be8409742e3a3939b3c90311550d208bcf42e1 (patch) | |
tree | 203ef57d90608fef0d001db357ac29225f953b11 | |
parent | bd22275694d7a14ac922135f85896fd50265d5cd (diff) | |
download | Ishtar-81be8409742e3a3939b3c90311550d208bcf42e1.tar.bz2 Ishtar-81be8409742e3a3939b3c90311550d208bcf42e1.zip |
🐛 GIS form - remove "timestamp" fields (refs #5673)
-rw-r--r-- | changelog/en/changelog_2022-06-15.md | 6 | ||||
-rw-r--r-- | changelog/fr/changelog_2023-01-25.md | 6 | ||||
-rw-r--r-- | ishtar_common/forms_common.py | 2 |
3 files changed, 13 insertions, 1 deletions
diff --git a/changelog/en/changelog_2022-06-15.md b/changelog/en/changelog_2022-06-15.md index 35b060285..1bda32c6a 100644 --- a/changelog/en/changelog_2022-06-15.md +++ b/changelog/en/changelog_2022-06-15.md @@ -1,3 +1,9 @@ +v4.0.67 - 2023-11-28 +-------------------- + +### Bug fixes ### +- GIS form - remove "timestamp" fields (#5673) + v4.0.66 - 2023-11-22 -------------------- diff --git a/changelog/fr/changelog_2023-01-25.md b/changelog/fr/changelog_2023-01-25.md index 9a233de84..a0d601158 100644 --- a/changelog/fr/changelog_2023-01-25.md +++ b/changelog/fr/changelog_2023-01-25.md @@ -1,3 +1,9 @@ +v4.0.67 - 2023-11-28 +-------------------- + +### Corrections de dysfonctionnements ### +- Formulaire SIG - suppression des champs "horodatage" (#5673) + v4.0.66 - 2023-11-22 -------------------- diff --git a/ishtar_common/forms_common.py b/ishtar_common/forms_common.py index 0f076a9a1..ecff07888 100644 --- a/ishtar_common/forms_common.py +++ b/ishtar_common/forms_common.py @@ -2736,7 +2736,7 @@ class GISForm(forms.ModelForm, CustomForm, ManageOldType): class Meta: model = models.GeoVectorData exclude = ["need_update", "imports", "cached_x", "cached_y", "cached_z", - "source_content_type"] + "source_content_type", "timestamp_label", "timestamp_geo"] HEADERS = { "related_items_ishtar_common_town": FormHeader( |