2013-02-08 13:07:27 +01: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.
|
|
|
|
|
|
|
|
Foobar 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/>.
|
|
|
|
-->
|
2013-02-07 15:00:31 +01:00
|
|
|
<!-- Dialog header with title -->
|
|
|
|
<div class="modal-header">
|
|
|
|
<h3>Nouveau compte</h3>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Dialog body -->
|
|
|
|
<div class="modal-body">
|
|
|
|
<form name="account" class="form-horizontal">
|
|
|
|
<div class="control-group">
|
|
|
|
<!-- Account name field -->
|
|
|
|
<label class="control-label" for="inputName">Nom du compte</label>
|
|
|
|
<div class="controls">
|
|
|
|
<input type="text" id="inputName" ng-model="account.name"></input>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Authorized overdraft field -->
|
|
|
|
<label class="control-label" for="inputAuthorizedOverdraft">Découvert authorisé</label>
|
|
|
|
<div class="controls">
|
|
|
|
<input type="text" id="inputAuthorizedOverdraft" ng-model="account.authorized_overdraft"></input>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Dialog footer with buttons -->
|
|
|
|
<div class="modal-footer">
|
|
|
|
<a href="#" class="btn btn-primary" ng-click="saveAccount(account, this)">OK</a>
|
|
|
|
<a href="#" class="btn" ng-click="cancelEditAccount(account, this)">Annuler</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|