feat(project_management): Add Project State to the UI
ref: #294 #295 #300
This commit is contained in:
@ -91,7 +91,7 @@ class Project(ProjectCommonFieldsName):
|
||||
|
||||
state = models.ForeignKey(
|
||||
ProjectState,
|
||||
blank= False,
|
||||
blank= True,
|
||||
help_text = 'State of the project',
|
||||
on_delete=models.SET_NULL,
|
||||
null = True,
|
||||
@ -101,7 +101,7 @@ class Project(ProjectCommonFieldsName):
|
||||
|
||||
project_type = models.ForeignKey(
|
||||
ProjectType,
|
||||
blank= False,
|
||||
blank= True,
|
||||
help_text = 'Type of project',
|
||||
on_delete=models.SET_NULL,
|
||||
null = True,
|
||||
|
Reference in New Issue
Block a user