diff options
author | adityacp | 2021-02-01 17:38:00 +0530 |
---|---|---|
committer | adityacp | 2021-02-01 17:38:00 +0530 |
commit | fca319fefcd2a0e476415968b18873b0c791a5fe (patch) | |
tree | d16d5308d643a3b619b28360eedd173fff49f48b /yaksh/forms.py | |
parent | 164d4d79787f3f6ef21a213bd647e885bf1cc899 (diff) | |
download | online_test-fca319fefcd2a0e476415968b18873b0c791a5fe.tar.gz online_test-fca319fefcd2a0e476415968b18873b0c791a5fe.tar.bz2 online_test-fca319fefcd2a0e476415968b18873b0c791a5fe.zip |
Change templates and models
- Remove unwanted model manager methods
- Minor UI refactor for course and question interface
Diffstat (limited to 'yaksh/forms.py')
-rw-r--r-- | yaksh/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yaksh/forms.py b/yaksh/forms.py index 7a9eb87..01e691d 100644 --- a/yaksh/forms.py +++ b/yaksh/forms.py @@ -387,7 +387,7 @@ class QuestionFilterForm(forms.Form): class SearchFilterForm(forms.Form): search_tags = forms.CharField( label='Search Tags', - widget=forms.TextInput(attrs={'placeholder': 'Search', + widget=forms.TextInput(attrs={'placeholder': 'Search by course name', 'class': form_input_class, }), required=False ) |