Added task id in details pane. Closes #42387801242396

This commit is contained in:
2015-07-22 22:52:24 -07:00
parent a610f5cac3
commit e8b65a5269

3
ui.py
View File

@@ -220,7 +220,8 @@ class TaskDetails(urwid.Pile):
body = projects + \
[
('pack', urwid.Divider('=')),
('pack', urwid.Text(('header', task['name']))),
('pack', urwid.Text(('header', task['name'] + \
" #" + str(task['id'])))),
('pack', assignee),
('pack', urwid.Divider('-')),
('pack', urwid.Text(task['notes'])),