123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <!--
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- -->
- <div class="row service-block">
- <div class="span6">
- <ul class="nav nav-pills move">
- <li class="dropdown">
- <a class="dropdown-toggle" data-toggle="dropdown" href="#">Quick Links <b class="caret"></b></a>
- <ul class="dropdown-menu">
- {{#each controller.content.quickLinks}}
- <a href="javascript:void(null)">{{label}}</a>
- {{/each}}
- </ul>
- </li>
- </ul>
- <h4>Service Summary</h4>
- <div class="service-content">
- {{#each component in controller.content.components}}
- {{#if component.type}}
- <div class="service-links">{{component.componentName}}:<a {{action selectHost component.host href=true}} href="javascript:void(null)">{{component.host.hostName}}</a></div>
- {{else}}
- <div class="service-links">{{component.componentName}}:<a {{action filterHosts component}} href="javascript:void(null)">{{component.componentName}}</a></div>
- {{/if}}
- {{/each}}
- Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the
- industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and
- scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into
- electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of
- Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like
- Aldus PageMaker including versions of Lorem Ipsum.
- </div>
- </div>
- <div class="span6">
- <div class="box">
- <div class="box-header">
- <h4>Alerts</h4>
- </div>
- <ul class="alerts">
- {{#each controller.content.alerts}}
- <li class="status-{{unbound status}}">
- <p><span class="title">{{title}}</span> <a href="javascript:void(null)">{{service.label}}</a><span class="date-time">{{date}}</span></p>
- <p><span>{{status}}:</span> <span>{{message}}</span></p>
- </li>
- {{/each}}
- </ul>
- <div class="box-footer">
- <hr />
- <a class="go-to" href="javascript:void(null)">Go to Nagios</a>
- </div>
- </div>
- </div>
- </div>
|