|
@@ -29,7 +29,7 @@ def extend_help_text( help_text, myList ):
|
|
|
|
|
|
|
|
class textSearchForm(forms.Form):
|
|
class textSearchForm(forms.Form):
|
|
|
|
|
|
|
|
- mywidget = forms.TextInput( attrs={'onfocus': "this.value=''", } )
|
|
|
|
|
|
|
+ mywidget = forms.TextInput( attrs={'onfocus': "this.value=''", 'class' : "border-thin"} )
|
|
|
searchText = forms.CharField ( label='', widget = mywidget, max_length = 2048, min_length=3, empty_value="Suche...", initial='Suche...' )
|
|
searchText = forms.CharField ( label='', widget = mywidget, max_length = 2048, min_length=3, empty_value="Suche...", initial='Suche...' )
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
def __init__(self, *args, **kwargs):
|
|
@@ -42,7 +42,7 @@ class textSearchForm(forms.Form):
|
|
|
Div('searchText', css_class='col-sm-6 col-6'),
|
|
Div('searchText', css_class='col-sm-6 col-6'),
|
|
|
Div(
|
|
Div(
|
|
|
ButtonHolder(
|
|
ButtonHolder(
|
|
|
- Submit('submit', 'Submit', css_class='btn border-dark rounded-0 mybtn')
|
|
|
|
|
|
|
+ Submit('submit', 'Submit', css_class='btn border-thin border-dark rounded-0 mybtn')
|
|
|
),
|
|
),
|
|
|
css_class='col-sm-6 col-6'),
|
|
css_class='col-sm-6 col-6'),
|
|
|
css_class='form-row row'),
|
|
css_class='form-row row'),
|