summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/forms.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/core/forms.py b/core/forms.py
index af3b171..05b982a 100644
--- a/core/forms.py
+++ b/core/forms.py
@@ -67,10 +67,10 @@ class CaveForm(ModelForm):
label = "Kataster code, see below",
widget=forms.TextInput(attrs={"placeholder": "see example below"})
)
- underground_centre_line = forms.CharField(
- required=False,
- widget=HTMLarea(attrs={"height": "80%", "rows": 20, "placeholder": "Enter page content (using HTML)"}),
- )
+ # underground_centre_line = forms.CharField(
+ # required=False,
+ # widget=HTMLarea(attrs={"height": "80%", "rows": 20, "placeholder": "Enter page content (using HTML)"}),
+ # )
notes = forms.CharField(
required=False,
widget=HTMLarea(attrs={"height": "80%", "rows": 20, "placeholder": "Enter page content (using HTML)"}),
@@ -92,7 +92,7 @@ class CaveForm(ModelForm):
class Meta:
model = Cave
- exclude = ("filename","url")
+ exclude = ("filename","url", "underground_centre_line")
field_order = ['unofficial_number', 'kataster_number', 'official_name', 'underground_description', 'survey', 'underground_centre_line', 'explorers', 'equipment', 'notes', 'references', 'description_file', 'survex_file', 'areacode', 'length', 'depth', 'extent',
'kataster_code', 'kataster_status' ]