diff --git a/app/application/views/projects/index.php b/app/application/views/projects/index.php
index 2f4637f21..9f6096154 100644
--- a/app/application/views/projects/index.php
+++ b/app/application/views/projects/index.php
@@ -26,10 +26,17 @@
issues()->where('status', '=', 1)->count();
+ $closedissues = $row->issues()->where('status', '=', 0)->count();
+ $dayspassed = (date("U") - date("U",strtotime($row->created_at)))/86400;
+ $velocity = number_format($closedissues/$dayspassed,2);
+ $etcday = 0;
+ if($velocity > 0){ $etcday = ceil($issues / $velocity); }else{ $etcday = $issues / 1; }
+ $etc = date("d-m-Y",strtotime("+".$etcday." days"));
?>
-
name; ?>
-
+
+ Velocity: issues/per day ETC: