WIP html formatting

This commit is contained in:
2018-03-06 18:59:27 -08:00
parent 256d7a9aab
commit 4d789d674d
3 changed files with 81 additions and 15 deletions

View File

@@ -39,9 +39,10 @@ class Ui(object):
def task_list(self, id):
self.nav_stack.append(('project', id))
def runInThread():
project = self.asana_service.get_project(id)
tasks = self.asana_service.get_tasks(id)
self.update(TaskList(tasks,
'TODO: get project name',
project.name(),
self.task_details
).component())
thread = Thread(target=runInThread())