From 9b4ad968f1b70f3c111e1e4fce4fce46bd968629 Mon Sep 17 00:00:00 2001 From: Sashi20 Date: Thu, 27 Sep 2018 12:31:17 +0530 Subject: Modified user status to view proposals --- website/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'website') 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}), -- cgit