2013-12-06 20:36:26 +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/>.
|
|
|
|
-->
|
|
|
|
<div class="modal fade" id="remove_entry" role="dialog" aria-labeled-by="remove_entry_header" aria-hidden="true">
|
|
|
|
<div class="modal-dialog">
|
|
|
|
<div class="modal-content">
|
|
|
|
<!-- Dialog header with title -->
|
|
|
|
<div class="modal-header">
|
2013-12-09 10:38:17 +01:00
|
|
|
<button class="close" ng-click="hideRemoveEntryPopup()" aria-hidden="true">×</button>
|
|
|
|
<h4 class="modal-title" id="remove_entry_header">Supprimer l'entrée #[[removingEntry.id]]</h4>
|
2013-12-06 20:36:26 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Dialog body -->
|
|
|
|
<div class="modal-body">
|
2013-12-09 10:38:17 +01:00
|
|
|
<p>Confirmez-vous la suppression de l'entrée « [[ removingEntry.label ]] » ?</p>
|
2013-12-06 20:36:26 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Dialog footer with buttons -->
|
|
|
|
<div class="modal-footer">
|
2013-12-09 10:38:17 +01:00
|
|
|
<button href="#" class="btn btn-primary" ng-click="hideRemoveEntryPopup()">Non</button>
|
|
|
|
<button href="#" class="btn btn-default" ng-click="confirmRemoveEntry()">Oui</button>
|
2013-12-06 20:36:26 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|