Spaces:
Sleeping
Sleeping
Commit
·
7e2623c
1
Parent(s):
3495552
Update app.py
Browse files
app.py
CHANGED
@@ -25,9 +25,11 @@ for milestone in inference_repo.get_milestones():
|
|
25 |
Resource=desc['status'],
|
26 |
Description=desc['leader']))
|
27 |
|
28 |
-
colors = {'not started': 'rgb(
|
29 |
-
'
|
30 |
-
'
|
|
|
|
|
31 |
|
32 |
|
33 |
fig = ff.create_gantt(df, colors=colors,
|
|
|
25 |
Resource=desc['status'],
|
26 |
Description=desc['leader']))
|
27 |
|
28 |
+
colors = {'not started': 'rgb(217, 217, 217)',
|
29 |
+
'in progress': 'rgb(147, 196, 125)',
|
30 |
+
'high priority - on track': 'rgb(234, 153, 153)',
|
31 |
+
'high priority - help needed': 'rgb(255, 0, 0)',
|
32 |
+
'completed': 'rgb(56, 118, 29)'}
|
33 |
|
34 |
|
35 |
fig = ff.create_gantt(df, colors=colors,
|