mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
42 lines
1.2 KiB
HTML
42 lines
1.2 KiB
HTML
<topnav title="Plugins" icon="fa fa-fw fa-cubes" subnav="true">
|
|
<ul class="nav">
|
|
<li ><a href="org/apps">Overview</a></li>
|
|
<li class="active" ><a href="org/apps/edit/{{current.type}}">Edit</a></li>
|
|
</ul>
|
|
</topnav>
|
|
|
|
<div class="page-container">
|
|
<div class="page">
|
|
<h2>Edit App</h2>
|
|
|
|
|
|
<form name="editForm">
|
|
<div class="tight-form">
|
|
<ul class="tight-form-list">
|
|
<li class="tight-form-item" style="width: 80px">
|
|
Type
|
|
</li>
|
|
<li>
|
|
<li>
|
|
<input type="text" disabled="disabled" class="input-xlarge tight-form-input" ng-model="current.type">
|
|
</li>
|
|
</li>
|
|
<li class="tight-form-item">
|
|
Default
|
|
<input class="cr1" id="current.enabled" type="checkbox" ng-model="current.enabled" ng-checked="current.enabled">
|
|
<label for="current.enabled" class="cr1"></label>
|
|
</li>
|
|
</ul>
|
|
<div class="clearfix"></div>
|
|
</div>
|
|
<br>
|
|
<app-config-loader></app-config-loader>
|
|
<div class="pull-right" style="margin-top: 35px">
|
|
<button type="submit" class="btn btn-success" ng-click="update()">Save</button>
|
|
<a class="btn btn-inverse" href="org/apps">Cancel</a>
|
|
</div>
|
|
<br>
|
|
</form>
|
|
|
|
</div>
|
|
</div> |