accountant-ui/src/operations/operation.form.tmpl.html

59 lines
2.1 KiB
HTML
Raw Normal View History

2016-05-24 08:56:32 +02:00
<!--
This file is part of Accountant.
Accountant is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Accountant is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with Accountant. If not, see <http://www.gnu.org/licenses/>.
-->
2016-05-24 08:49:55 +02:00
<!-- vim: set tw=80 ts=2 sw=2 sts=2: -->
2016-07-15 16:40:39 +02:00
<!-- kate: space-indent on; indent-width 2; mixedindent off; -->
2016-05-24 08:49:55 +02:00
<form class="form-horizontal" role="form" name="form">
<div class="form-group">
<label class="col-sm-4 control-label" for="operation-date">Date</label>
<div class="col-sm-8">
2016-07-15 16:40:39 +02:00
<input class="form-control" id="operation-date" name="operation_date" ng-model="data.operation_date"
type="text" bs-datepicker data-date-format="yyyy-MM-dd"
2016-05-24 08:49:55 +02:00
placeholder="Operation date">
</div>
</div>
<div class="form-group">
<label class="col-sm-4 control-label" for="label">Label</label>
<div class="col-sm-8">
2016-07-15 16:40:39 +02:00
<input class="form-control" id="label" name="label"
ng-model="data.label"
type="text" placeholder="Label">
2016-05-24 08:49:55 +02:00
</input>
</div>
</div>
<div class="form-group">
<label class="col-sm-4 control-label" for="value">Montant</label>
<div class="col-sm-8">
2016-07-15 16:40:39 +02:00
<input class="form-control" id="value" name="value"
ng-model="data.value"
type="number" placeholder="Value">
2016-05-24 08:49:55 +02:00
</input>
</div>
</div>
<div class="form-group">
<label class="col-sm-4 control-label" for="category">Catégorie</label>
<div class="col-sm-8">
2016-07-15 16:40:39 +02:00
<input class="form-control" id="category" name="category"
ng-model="data.category"
type="text" placeholder="Category">
2016-05-24 08:49:55 +02:00
</input>
</div>
</div>
</form>