summaryrefslogtreecommitdiff
path: root/yaksh/forms.py
diff options
context:
space:
mode:
authorCruiseDevice2019-12-23 13:06:48 +0530
committerCruiseDevice2020-01-02 16:20:31 +0530
commit925d616c4137f014f2f55a979b2350ef0409a5b9 (patch)
treed1747de34407fde93e108810a5feeee242a8e341 /yaksh/forms.py
parent75e8fb06b42420f21c8571341ef8300a102cd2c7 (diff)
downloadonline_test-925d616c4137f014f2f55a979b2350ef0409a5b9.tar.gz
online_test-925d616c4137f014f2f55a979b2350ef0409a5b9.tar.bz2
online_test-925d616c4137f014f2f55a979b2350ef0409a5b9.zip
Resolve comments
- Fix PEP8 - Change the url as per django urlpattern - Replace all the buttons by <a> tag - Use get_queryset() for filtering data for pagination - Make buttons large - Add Pagination in ajax_question_filter.html - Hide Pagination when there is no question object
Diffstat (limited to 'yaksh/forms.py')
-rw-r--r--yaksh/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yaksh/forms.py b/yaksh/forms.py
index 4a90ef7..ffb15a6 100644
--- a/yaksh/forms.py
+++ b/yaksh/forms.py
@@ -399,7 +399,7 @@ class ProfileForm(forms.ModelForm):
)
class UploadFileForm(forms.Form):
- file = forms.FileField(widget=forms.FileInput(attrs={'class':'upload'}))
+ file = forms.FileField(widget=forms.FileInput(attrs={'class': 'upload'}))
class QuestionPaperForm(forms.ModelForm):