feat(core): add basic ticketing system
ref: #250 #252 #96 #93 #95 #90 #115
This commit is contained in:
@ -100,6 +100,11 @@ class Project(ProjectCommonFieldsName):
|
||||
)
|
||||
|
||||
|
||||
def __str__(self):
|
||||
|
||||
return self.name
|
||||
|
||||
|
||||
@property
|
||||
def percent_completed(self) -> str: # Auto-Calculate
|
||||
""" How much of the project is completed.
|
||||
|
Reference in New Issue
Block a user