frontend: display key helper

This commit is contained in:
nemunaire 2018-11-21 00:11:15 +01:00 committed by Pierre-Olivier Mercier
parent e85a41d713
commit 1166a925fe

View File

@ -78,6 +78,7 @@
<div class="form-group" ng-repeat="key in flags">
<label for="sol_{{ key.id }}">{{ key.name }}&nbsp;:</label>
<input type="text" class="form-control" id="sol_{{ key.id }}" autocomplete="off" name="sol_{{ key.id }}" ng-model="key.value" ng-if="!key.found">
<small class="form-text text-muted" ng-if="key.help.length > 0" ng-bind="key.help"></small>
<span class="glyphicon glyphicon-ok form-control-feedback" aria-hidden="true" ng-if="key.found"></span>
</div>