From 3b0e1cca2fc91095643269d19b299bcb67aadc4b Mon Sep 17 00:00:00 2001
From: Joseph Schorr <josephschorr@users.noreply.github.com>
Date: Fri, 13 Nov 2015 15:45:06 -0500
Subject: [PATCH] Better scheduled downtime information

Fixes #819
---
 static/directives/quay-service-status-bar.html | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/static/directives/quay-service-status-bar.html b/static/directives/quay-service-status-bar.html
index 4a96f5b65..24e2cdef9 100644
--- a/static/directives/quay-service-status-bar.html
+++ b/static/directives/quay-service-status-bar.html
@@ -8,6 +8,17 @@
 
   <div ng-repeat="scheduled in scheduled_maintenances">
      <i class="fa fa-calendar" style="margin-right: 6px;"></i>
+     <span ng-switch on="scheduled.status" style="vertical-align: middle">
+       <span ng-switch-when="scheduled">
+         Scheduled for {{ scheduled.scheduled_for | amDateFormat:'dddd, MMMM Do YYYY, h:mm A' }}:
+       </span>
+       <b ng-switch-when="in_progress" style="color: #FDFFB9;">
+         In progress:
+       </b>
+       <b ng-switch-when="verifying" style="color: #FDFFB9;">
+         In progress:
+       </b>
+     </span>
      <a ng-href="{{ scheduled.shortlink }}" class="quay-service-status-description">{{ scheduled.name }}</a>
   </div>
 </div>