From 8543fed00c912877375b0835b63c765baed654e2 Mon Sep 17 00:00:00 2001
From: Akshen
Date: Mon, 13 May 2019 16:15:57 +0530
Subject: Minor Updates
- Proposal 1 fields changed
- Forgot Password files moved
- No search Results Found
- Pincode field added
---
fossee_manim/forms.py | 41 +++++----
fossee_manim/models.py | 4 +-
.../templates/fossee_manim/edit_proposal.html | 3 +
.../fossee_manim/password_change_done.html | 19 -----
.../fossee_manim/password_change_form.html | 16 ----
.../fossee_manim/password_reset_complete.html | 6 --
.../fossee_manim/password_reset_confirm.html | 15 ----
.../fossee_manim/password_reset_done.html | 9 --
.../fossee_manim/password_reset_form.html | 14 ---
fossee_manim/templates/fossee_manim/register.html | 37 ++++++++
.../fossee_manim/registration/register.html | 37 --------
.../templates/fossee_manim/search_results.html | 6 +-
fossee_manim/templates/registration/base.html | 99 ++++++++++++++++++++++
.../registration/password_change_done.html | 19 +++++
.../registration/password_change_form.html | 16 ++++
.../registration/password_reset_complete.html | 7 ++
.../registration/password_reset_confirm.html | 15 ++++
.../registration/password_reset_done.html | 9 ++
.../registration/password_reset_form.html | 14 +++
fossee_manim/urls_password_reset.py | 7 +-
fossee_manim/views.py | 6 +-
21 files changed, 259 insertions(+), 140 deletions(-)
delete mode 100644 fossee_manim/templates/fossee_manim/password_change_done.html
delete mode 100644 fossee_manim/templates/fossee_manim/password_change_form.html
delete mode 100644 fossee_manim/templates/fossee_manim/password_reset_complete.html
delete mode 100644 fossee_manim/templates/fossee_manim/password_reset_confirm.html
delete mode 100644 fossee_manim/templates/fossee_manim/password_reset_done.html
delete mode 100644 fossee_manim/templates/fossee_manim/password_reset_form.html
create mode 100644 fossee_manim/templates/fossee_manim/register.html
delete mode 100644 fossee_manim/templates/fossee_manim/registration/register.html
create mode 100644 fossee_manim/templates/registration/base.html
create mode 100644 fossee_manim/templates/registration/password_change_done.html
create mode 100644 fossee_manim/templates/registration/password_change_form.html
create mode 100644 fossee_manim/templates/registration/password_reset_complete.html
create mode 100644 fossee_manim/templates/registration/password_reset_confirm.html
create mode 100644 fossee_manim/templates/registration/password_reset_done.html
create mode 100644 fossee_manim/templates/registration/password_reset_form.html
(limited to 'fossee_manim')
diff --git a/fossee_manim/forms.py b/fossee_manim/forms.py
index a1922ff..8edfb5c 100644
--- a/fossee_manim/forms.py
+++ b/fossee_manim/forms.py
@@ -24,16 +24,17 @@ position_choices = (
)
department_choices = (
- ("computer engineering", "Computer Science"),
- ("information technology", "Information Technology"),
- ("civil engineering", "Civil Engineering"),
- ("electrical engineering", "Electrical Engineering"),
- ("mechanical engineering", "Mechanical Engineering"),
- ("chemical engineering", "Chemical Engineering"),
- ("aerospace engineering", "Aerospace Engineering"),
+ ("computer", "Dept. of Computers"),
+ ("mathematics", "Dept. of Mathematics"),
+ ("physics", "Dept. of Physics"),
+ ("civil", "Dept. of Civil"),
+ ("electrical", "Dept. of Electrical"),
+ ("mechanical", "Dept. of Mechanical"),
+ ("chemical", "Dept. of Chemical"),
+ ("aerospace", "Dept. of Aerospace"),
("biosciences and bioengineering", "Biosciences and BioEngineering"),
- ("electronics", "Electronics"),
- ("energy science and engineering", "Energy Science and Engineering"),
+ ("electronics", "Dept. of Electronics"),
+ ("energy science and engineering", "Dept. of Energy Science and Engineering"),
("others", "Others")
)
@@ -97,13 +98,20 @@ states = (
)
+def check_upper(uname):
+ for a in uname:
+ if a.isupper():
+ return True
+ return False
+
+
class UserRegistrationForm(forms.Form):
"""A Class to create new form for User's Registration.
It has the various fields and functions required to register
a new user to the system"""
required_css_class = 'required'
errorlist_css_class = 'errorlist'
- username = forms.CharField(max_length=32, help_text='''Letters, digits,
+ username = forms.CharField(max_length=32, help_text='''lowercase, letters, digits,
period and underscore only.''')
email = forms.EmailField()
password = forms.CharField(max_length=32, widget=forms.PasswordInput())
@@ -124,6 +132,7 @@ class UserRegistrationForm(forms.Form):
department = forms.ChoiceField(help_text='Department you work/study',
choices=department_choices)
location = forms.CharField(max_length=255, help_text="Place/City")
+ pincode = forms.RegexField(regex=r'^.{6}$', error_messages={'invalid': "Please enter valid PINCODE"})
state = forms.ChoiceField(choices=states)
how_did_you_hear_about_us = forms.ChoiceField(choices=source)
@@ -133,6 +142,8 @@ class UserRegistrationForm(forms.Form):
msg = "Only letters, digits, period are"\
" allowed in username"
raise forms.ValidationError(msg)
+ if check_upper(u_name):
+ raise forms.ValidationError("lowercase only!")
try:
User.objects.get(username__exact=u_name)
raise forms.ValidationError("Username already exists.")
@@ -179,6 +190,7 @@ class UserRegistrationForm(forms.Form):
new_profile.location = cleaned_data["location"]
new_profile.title = cleaned_data["title"]
new_profile.state = cleaned_data["state"]
+ new_profile.pincode = cleaned_data["pincode"]
new_profile.how_did_you_hear_about_us = cleaned_data["how_did_you_hear_about_us"]
new_profile.activation_key = generate_activation_key(new_user.username)
new_profile.key_expiry_time = timezone.now() + timezone.timedelta(
@@ -237,17 +249,14 @@ class AnimationProposal(forms.ModelForm):
def __init__(self, *args, **kwargs):
super(AnimationProposal, self).__init__(*args, **kwargs)
- self.fields['github'].widget.attrs['rows'] = 1
- self.fields['github'].widget.attrs['cols'] = 50
- self.fields['github'].widget.attrs['placeholder'] = 'Put your repo\
- link here'
- self.fields['description'].widget.attrs['placeholder'] = 'NOTE:-Do\
+ self.fields['subcategory'].widget.attrs['placeholder'] = 'Eg: Quantum Mechanics, Topology'
+ self.fields['outline'].widget.attrs['placeholder'] = 'NOTE:-Do\
add info about prerequisites if any also possible textbooks or \
other related information'
class Meta:
model = Animation
- fields = ['category', 'title', 'description', 'github', 'tags']
+ fields = ['category', 'subcategory', 'title', 'outline', 'tags']
class CommentForm(forms.ModelForm):
diff --git a/fossee_manim/models.py b/fossee_manim/models.py
index bdf1efc..c689f66 100644
--- a/fossee_manim/models.py
+++ b/fossee_manim/models.py
@@ -164,10 +164,10 @@ class Animation(models.Model):
contributor = models.ForeignKey(User, on_delete=models.CASCADE)
reviewer = models.ForeignKey(User, null=True, on_delete=models.CASCADE,
related_name="%(app_label)s_%(class)s_related")
- description = models.TextField()
+ outline = models.TextField()
status = models.CharField(max_length=255, choices=status)
- github = models.TextField()
category = models.ForeignKey(Category, on_delete=models.CASCADE)
+ subcategory = models.CharField(max_length=255)
created = models.DateTimeField(default=timezone.now)
tags = TaggableManager()
history = HistoricalRecords()
diff --git a/fossee_manim/templates/fossee_manim/edit_proposal.html b/fossee_manim/templates/fossee_manim/edit_proposal.html
index e42a358..55c0f75 100644
--- a/fossee_manim/templates/fossee_manim/edit_proposal.html
+++ b/fossee_manim/templates/fossee_manim/edit_proposal.html
@@ -31,6 +31,9 @@
+ {% elif proposal_form.instance.status == 'pending' %}
+
Awaiting Reviewer's Moderation
+
{% else %}