Coverage for website/forms/SearchForm.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.5.0, created at 2025-09-13 15:29 -0300

1from django import forms 

2 

3 

4class SearchForm(forms.Form): 

5 query = forms.CharField( 

6 max_length=100, 

7 required=True, 

8 widget=forms.TextInput( 

9 attrs={ 

10 "class": "form-control", 

11 "placeholder": "Search for posts...", 

12 "aria-label": "Search", 

13 } 

14 ), 

15 )