diff options
author | Sashi20 | 2020-03-06 14:39:16 +0530 |
---|---|---|
committer | Sashi20 | 2020-03-06 14:39:16 +0530 |
commit | 903b73b033c9b80db36da755e05185d4f266101c (patch) | |
tree | 94d3cf22c8c872b960f7bd252d9837f97db5fe52 /arduino_blog/forms.py | |
parent | f3b005d44de92e6872a0f9824f5d20cc9e636f34 (diff) | |
download | arduino_projects_website-903b73b033c9b80db36da755e05185d4f266101c.tar.gz arduino_projects_website-903b73b033c9b80db36da755e05185d4f266101c.tar.bz2 arduino_projects_website-903b73b033c9b80db36da755e05185d4f266101c.zip |
Add view abstracts, comment abstract
Diffstat (limited to 'arduino_blog/forms.py')
-rw-r--r-- | arduino_blog/forms.py | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/arduino_blog/forms.py b/arduino_blog/forms.py index 4945b79..b4e23ae 100644 --- a/arduino_blog/forms.py +++ b/arduino_blog/forms.py @@ -24,7 +24,7 @@ from django.contrib.auth.models import User from django.contrib.auth import authenticate from django.utils import timezone from arduino_blog.models import ( - Profile, User, Proposal + Profile, User, Proposal, Comment ) from .send_emails import (send_user_mail, generate_activation_key) @@ -137,12 +137,10 @@ class UserRegistrationForm(forms.Form): attrs={'placeholder': 'Enter valid email id'})) password = forms.CharField(max_length=32, widget=forms.PasswordInput()) confirm_password = forms.CharField(max_length=32, widget=forms.PasswordInput()) - title = forms.ChoiceField(choices=title) first_name = forms.CharField(max_length=32, label='First name', widget=forms.TextInput( attrs={'placeholder': 'First name'})) last_name = forms.CharField(max_length=32, label='Last name', widget=forms.TextInput( attrs={'placeholder': 'Last name'},)) - phone = forms.CharField(widget=forms.TextInput(attrs={'maxlength': '10', 'type': 'number'})) institute = forms.CharField(max_length=32, label='Institute/Organization/Company', widget=forms.TextInput()) position = forms.ChoiceField(choices = position_choices) @@ -202,9 +200,7 @@ class UserRegistrationForm(forms.Form): new_profile.institute = cleaned_data["institute"] new_profile.position = cleaned_data["position"] new_profile.pincode = cleaned_data["pincode"] - new_profile.phone = cleaned_data["phone"] new_profile.city = cleaned_data["city"] - new_profile.title = cleaned_data["title"] new_profile.state = cleaned_data["state"] new_profile.how_did_you_hear_about_us = cleaned_data["how_did_you_hear_about_us"] new_profile.activation_key = generate_activation_key( @@ -251,7 +247,8 @@ class AbstractProposalForm(forms.ModelForm): error_messages={ 'required': 'Abstract field required.'}, ) - + references = forms.CharField(widget=forms.TextInput(attrs={'class': 'form-control', 'placeholder': 'References(if any)'}) + ) completion_date = forms.DateTimeField( input_formats=['%YY-%mm-%dd'], widget=forms.DateTimeInput(attrs={ @@ -271,4 +268,4 @@ class AbstractProposalForm(forms.ModelForm): def __init__(self, *args, **kwargs): super(AbstractProposalForm, self).__init__(*args, **kwargs) self.fields['completion_date'].disabled = True - self.fields['completion_date'].initial = (datetime.date.today() + relativedelta(months=1)) + self.fields['completion_date'].initial = (datetime.date.today() + relativedelta(months=1))
\ No newline at end of file |