diff options
author | Sashi20 | 2018-09-27 12:31:17 +0530 |
---|---|---|
committer | Sashi20 | 2018-09-27 12:31:17 +0530 |
commit | 9b4ad968f1b70f3c111e1e4fce4fce46bd968629 (patch) | |
tree | db1a22a92e52a1eabb7253deb2f3010e7b040cf1 /website/forms.py | |
parent | 0485cab238fef6b9f9c325758dbf28706905cb77 (diff) | |
download | nccps-2018-9b4ad968f1b70f3c111e1e4fce4fce46bd968629.tar.gz nccps-2018-9b4ad968f1b70f3c111e1e4fce4fce46bd968629.tar.bz2 nccps-2018-9b4ad968f1b70f3c111e1e4fce4fce46bd968629.zip |
Modified user status to view proposals
Diffstat (limited to 'website/forms.py')
-rwxr-xr-x | website/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/website/forms.py b/website/forms.py index a08c9ee..5631d46 100755 --- a/website/forms.py +++ b/website/forms.py @@ -144,7 +144,7 @@ class ProposalForm(forms.ModelForm): ) abstract = forms.CharField(widget= forms.HiddenInput(),required=False, label='') proposal_type = forms.CharField( - widget=forms.HiddenInput(), label='', initial='ABSTRACT', required=False) + widget=forms.HiddenInput(), label='', initial='PAPER', required=False) duration = forms.ChoiceField(widget=forms.Select(attrs={'readonly': True}), choices=abs_duration, required=True) #duration = forms.ChoiceField(choices=abs_duration, widget=forms.ChoiceField(attrs={'readonly': True}), |