
This patch removes hostname and ports attributes, and modifies memory_size as MiB from create dialog. Also, merge environment tab into miscellaneous tab. Since create dialog will be changed widely in following patch, so this patch is provided as hotfix. Change-Id: I63920f7792655cce06d3bcf531ecdce6591cdd44
21 lines
951 B
HTML
21 lines
951 B
HTML
<div ng-controller="createContainerMiscController as ctrl">
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<div class="form-group">
|
|
<label class="control-label" for="container-workdir" translate>Working Directory</label>
|
|
<input name="container-workdir" type="text" class="form-control" id="container-workdir"
|
|
ng-model="model.newContainerSpec.workdir"
|
|
placeholder="{$ 'The working directory for commands to run in.'|translate $}">
|
|
</div>
|
|
</div>
|
|
<div class="col-xs-12">
|
|
<div class="form-group">
|
|
<label class="control-label" for="container-environment" translate>Environment Variables</label>
|
|
<input name="container-environment" type="text" class="form-control" id="container-environment"
|
|
ng-model="model.newContainerSpec.environment"
|
|
placeholder="{$ 'KEY1=VALUE1,KEY2=VALUE2...'|translate $}">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|