59 lines
2.1 KiB
HTML
59 lines
2.1 KiB
HTML
<!--
|
|
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/>.
|
|
-->
|
|
<!-- vim: set tw=80 ts=2 sw=2 sts=2: -->
|
|
<!-- kate: space-indent on; indent-width 2; mixedindent off; -->
|
|
<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">
|
|
<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"
|
|
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">
|
|
<input class="form-control" id="label" name="label"
|
|
ng-model="data.label"
|
|
type="text" placeholder="Label">
|
|
</input>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label class="col-sm-4 control-label" for="value">Montant</label>
|
|
<div class="col-sm-8">
|
|
<input class="form-control" id="value" name="value"
|
|
ng-model="data.value"
|
|
type="number" placeholder="Value">
|
|
</input>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label class="col-sm-4 control-label" for="category">Catégorie</label>
|
|
<div class="col-sm-8">
|
|
<input class="form-control" id="category" name="category"
|
|
ng-model="data.category"
|
|
type="text" placeholder="Category">
|
|
</input>
|
|
</div>
|
|
</div>
|
|
</form>
|