Radomir Dopieralski 8cdb60cb94 Plan editing form
Put back the form for selecting the numbers of instances. It will be
later replaced with angular machinery.

A the moment there is no way to update plan parameters on submit.

Change-Id: I5bd345f38b1f630c384858f405d767e0003d3354
2014-08-14 14:38:01 +02:00

18 lines
503 B
HTML

<div class="number_picker unselectable">
<a
ng-click="decrementValue()"
class="arrow-left"
ng-class="{disabled: disabledInput || disableArrow()}"
>
<i ng-hide="disabledInput" class="glyphicon glyphicon-chevron-left"></i>
</a>
<input type="text" value="{$value$}" ng-model="value">
<a
ng-click="incrementValue()"
class="arrow-right"
ng-class="{disabled: disabledInput}"
>
<i ng-hide="disabledInput" class="glyphicon glyphicon-chevron-right"></i>
</a>
</div>