Skip to content
Snippets Groups Projects

Feat: Showing full name for proposers of projects, instead of username, where...

Merged ld507 requested to merge showing-full-names-of-proposers into master
All threads resolved!
Files
7
+ 0
1
@@ -8,7 +8,6 @@ class ProjectForm(FlaskForm):
description = TextAreaField("Description", validators=[DataRequired()])
is_student_proposal = BooleanField("Student Proposal", default=False)
on_behalf = StringField("from", default=None)
student_full_name = StringField("from (full name)", default=None)
def validate_on_behalf(self, field):
if self.is_student_proposal.data and not field.data:
Loading