You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
902 B
28 lines
902 B
<div ng-controller="Kubernetes.ReplicationControllerEditController">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<span class="pull-right"> </span>
|
|
<a class="btn btn-default pull-right"
|
|
title="Go back to viewing all the replication controllers"
|
|
href="{{baseUri}}/kubernetes/replicationControllers"><i class="fa fa-list"></i></a>
|
|
<button class="btn btn-primary pull-right"
|
|
title="Saves changes to the controller"
|
|
ng-click="save()">
|
|
Save
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div ng-hide="fetched">
|
|
<div class="align-center">
|
|
<i class="fa fa-spinner fa-spin"></i>
|
|
</div>
|
|
</div>
|
|
<div ng-show="fetched">
|
|
<div hawtio-form-2="config" entity="entity"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|