cloudstack/tools/ngui/static/js/app/instances/instances.tpl.html
2013-07-30 10:01:37 -04:00

55 lines
2.3 KiB
HTML

<!--
// 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="well well-small form-inline">
<input type="text" placeholder="Search" class="input-medium search-query" ng-model="search.displayname">
<label>
Display only:
<select ng-model="search.state">
<option value="">All</option>
<option value="Stopped">Stopped</option>
<option value="Running">Running</option>
<option value="Destroyed">Destroyed</option>
</select>
</label>
</div>
<table class="table table-bordered">
<thead>
<tr>
<th ng-repeat="attribute in toDisplay"> {{dictionary.labels[attribute]}} </th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="model in collection | filter:search">
<td>
<a href="{{'/#/instances/' + model.id}}">{{model.displayname}}</a>
</td>
<td>{{model.instancename}}</td>
<td>{{model.zonename}}</td>
<td><vm-state-label vm="model"></vm-state-label></td>
<td>
<confirm on-ok="model.start()" action="Start VirtualMachine"><i class="icon-play"></i></confirm>
<confirm on-ok="model.stop()" action="Stop VirtualMachine"><i class="icon-ban-circle"></i></confirm>
<confirm on-ok="model.reboot()" action="Reboot VirtualMachine"><i class="icon-repeat"></i></confirm>
<confirm on-ok="model.destroy()" action="Destroy VirtualMachine"><i class="icon-remove"></i></confirm>
</td>
</tr>
</tbody>
</table>