diff options
Diffstat (limited to 'core/forms.py')
-rw-r--r-- | core/forms.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/forms.py b/core/forms.py index 6c83a47..2dd9549 100644 --- a/core/forms.py +++ b/core/forms.py @@ -76,6 +76,7 @@ class EntranceForm(ModelForm): attrs={"height":"80%", "rows":20, 'placeholder': "Enter page content (using HTML)"})) location_description = forms.CharField(required = False, widget=HTMLarea( attrs={"height":"80%", "rows":20, 'placeholder': "Enter page content (using HTML)"})) + lastvisit = forms.CharField(required=False, widget=forms.TextInput(attrs={'size': '10'}), label="Date of last visit") approach = forms.CharField(required = False, widget=HTMLarea( attrs={"height":"80%", "rows":20, 'placeholder': "Enter page content (using HTML)"})) underground_description = forms.CharField(required = False, widget=HTMLarea( |