Add a 15% allowance for timeline clock not to make it look as if 75% is complete when just over 50% is complete.
diff --git a/app/soc/modules/gci/views/helper/request_data.py b/app/soc/modules/gci/views/helper/request_data.py
index c46b4eb..61f64ff 100644
--- a/app/soc/modules/gci/views/helper/request_data.py
+++ b/app/soc/modules/gci/views/helper/request_data.py
@@ -152,7 +152,9 @@
stopwatch_percentages = [25, 33, 50, 75, 100]
for p in stopwatch_percentages:
- if complete_percentage <= p:
+ # The 15 percent allowance is added so as to NOT make the clock
+ # look to be at 75% when the time is just 51%
+ if complete_percentage <= p + 15:
stopwatch_percentage = p
break