mirror of https://github.com/portainer/portainer
73 lines
3.0 KiB
HTML
73 lines
3.0 KiB
HTML
|
<rd-header>
|
||
|
<rd-header-title title="Create config"></rd-header-title>
|
||
|
<rd-header-content>
|
||
|
<a ui-sref="docker.configs">Configs</a> > Add config
|
||
|
</rd-header-content>
|
||
|
</rd-header>
|
||
|
|
||
|
<div class="row">
|
||
|
<div class="col-lg-12 col-md-12 col-xs-12">
|
||
|
<rd-widget>
|
||
|
<rd-widget-body>
|
||
|
<form class="form-horizontal">
|
||
|
<!-- name-input -->
|
||
|
<div class="form-group">
|
||
|
<label for="config_name" class="col-sm-1 control-label text-left">Name</label>
|
||
|
<div class="col-sm-11">
|
||
|
<input type="text" class="form-control" ng-model="formValues.Name" id="config_name" placeholder="e.g. myConfig">
|
||
|
</div>
|
||
|
</div>
|
||
|
<!-- !name-input -->
|
||
|
<!-- config-data -->
|
||
|
<div class="form-group">
|
||
|
<div class="col-sm-12">
|
||
|
<textarea id="config-editor" class="form-control"></textarea>
|
||
|
</div>
|
||
|
</div>
|
||
|
<!-- !config-data -->
|
||
|
<!-- labels -->
|
||
|
<div class="form-group">
|
||
|
<div class="col-sm-12" style="margin-top: 5px;">
|
||
|
<label class="control-label text-left">Labels</label>
|
||
|
<span class="label label-default interactive" style="margin-left: 10px;" ng-click="addLabel()">
|
||
|
<i class="fa fa-plus-circle" aria-hidden="true"></i> add label
|
||
|
</span>
|
||
|
</div>
|
||
|
<!-- labels-input-list -->
|
||
|
<div class="col-sm-12 form-inline" style="margin-top: 10px;">
|
||
|
<div ng-repeat="label in formValues.Labels" style="margin-top: 2px;">
|
||
|
<div class="input-group col-sm-5 input-group-sm">
|
||
|
<span class="input-group-addon">name</span>
|
||
|
<input type="text" class="form-control" ng-model="label.name" placeholder="e.g. com.example.foo">
|
||
|
</div>
|
||
|
<div class="input-group col-sm-5 input-group-sm">
|
||
|
<span class="input-group-addon">value</span>
|
||
|
<input type="text" class="form-control" ng-model="label.value" placeholder="e.g. bar">
|
||
|
</div>
|
||
|
<button class="btn btn-sm btn-danger" type="button" ng-click="removeLabel($index)">
|
||
|
<i class="fa fa-trash" aria-hidden="true"></i>
|
||
|
</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
<!-- !labels-input-list -->
|
||
|
</div>
|
||
|
<!-- !labels-->
|
||
|
<!-- access-control -->
|
||
|
<por-access-control-form form-data="formValues.AccessControlData" ng-if="applicationState.application.authentication"></por-access-control-form>
|
||
|
<!-- !access-control -->
|
||
|
<!-- actions -->
|
||
|
<div class="col-sm-12 form-section-title">
|
||
|
Actions
|
||
|
</div>
|
||
|
<div class="form-group">
|
||
|
<div class="col-sm-12">
|
||
|
<button type="button" class="btn btn-primary btn-sm" ng-disabled="!formValues.Name" ng-click="create()">Create config</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
<!-- !actions -->
|
||
|
</form>
|
||
|
</rd-widget-body>
|
||
|
</rd-widget>
|
||
|
</div>
|
||
|
</div>
|