60 lines
2.0 KiB
HTML
60 lines
2.0 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: -->
|
|
<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 id="operation-date" class="form-control"
|
|
name="operation_date" ng-model="operation.operation_date"
|
|
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 id="label" class="form-control"
|
|
name="label" ng-model="operation.label"
|
|
placeholder="Label" type="text">
|
|
</input>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label class="col-sm-4 control-label" for="value">Montant</label>
|
|
<div class="col-sm-8">
|
|
<input id="value" class="form-control" type="number"
|
|
name="value" ng-model="operation.value"
|
|
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 id="category" class="form-control" type="text"
|
|
name="category" ng-model="operation.category"
|
|
placeholder="Category">
|
|
</input>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|