HTML / JS / CSS work

This commit is contained in:
Brett Williams
2022-12-14 17:07:27 -08:00
parent 455934daa1
commit 2fed26a8a7
15 changed files with 349 additions and 332 deletions

View File

@@ -47,6 +47,7 @@ class RenderJob:
job_dict['status'] = self.render_status().value
job_dict['time_elapsed'] = self.time_elapsed() if type(self.time_elapsed) != str else self.time_elapsed
job_dict['file_hash'] = self.file_hash if self.file_hash and isinstance(self.file_hash, str) else self.file_hash()
job_dict['percent_complete'] = self.percent_complete()
job_dict['file_list'] = self.file_list()
job_dict['worker'] = self.worker.__dict__.copy()
job_dict['worker']['status'] = job_dict['status']