Rewrote frontend with AngularJS framework.

This commit is contained in:
Alexis Lahouze
2013-02-07 15:00:31 +01:00
parent 8807c6ae01
commit 1e44d67b3f
13 changed files with 17706 additions and 758 deletions

View File

@ -0,0 +1,16 @@
<!-- Dialog header with title -->
<div class="modal-header">
<h3>Supprimer l'entr&eacute;e {{entry.label}}</h3>
</div>
<!-- Dialog body -->
<div class="modal-body">
<p>Confirmez-vous la suppression de cette entr&eacute;e ?</p>
</div>
<!-- Dialog footer with buttons -->
<div class="modal-footer">
<a href="#" class="btn btn-primary" ng-click="dismiss()">Non</a>
<a href="#" class="btn" ng-click="removeEntry(entry, this)">Oui</a>
</div>