04/25 modified the UI, projects -> contracts, button names
This commit is contained in:
+2
-2
@@ -96,7 +96,7 @@ class FacilityForm(FlaskForm):
|
||||
address = TextAreaField('Address', validators=[Optional()])
|
||||
contact_person = StringField('Contact Person', validators=[Optional(), Length(max=100)])
|
||||
contact_phone = StringField('Contact Phone', validators=[Optional(), Length(max=20)])
|
||||
project_id = SelectField('Project', coerce=int, validators=[Optional()])
|
||||
project_id = SelectField('Contract', coerce=int, validators=[Optional()])
|
||||
active = BooleanField('Active', default=True)
|
||||
|
||||
|
||||
@@ -183,7 +183,7 @@ class IssueUpdateForm(FlaskForm):
|
||||
# ── Projects ─────────────────────────────────────────────────────────────────
|
||||
|
||||
class ProjectForm(FlaskForm):
|
||||
name = StringField('Project Name', validators=[DataRequired(), Length(max=255)])
|
||||
name = StringField('Contract Name', validators=[DataRequired(), Length(max=255)])
|
||||
description = TextAreaField('Description', validators=[Optional()])
|
||||
project_manager_id = SelectField('Project Manager', coerce=int, validators=[Optional()])
|
||||
active = BooleanField('Active', default=True)
|
||||
|
||||
Reference in New Issue
Block a user