<div class="announcement inline"
     ng-show="indicator != 'loading' && (scheduled_maintenances.length || incidents.length)">
  <div ng-repeat="incident in incidents">
      <span class="quay-service-status-indicator" ng-class="indicator"
        ng-if="indicator != 'loading'"></span>
        <a ng-href="{{ incident.shortlink }}" class="quay-service-status-description">{{ incident.name }}</a>
  </div>

  <div ng-repeat="scheduled in scheduled_maintenances">
     <i class="fa fa-calendar" style="margin-right: 6px;"></i>
     <a ng-href="{{ scheduled.shortlink }}" class="quay-service-status-description">{{ scheduled.name }}</a>
  </div>
</div>