feat(project_management): Add Project State to the UI

ref: #294 #295 #300
This commit is contained in:
2024-09-17 17:20:00 +09:30
parent 5ad974f947
commit f8e96a556d
9 changed files with 424 additions and 2 deletions

View File

@ -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,