Added delete feature for nodes.
This commit is contained in:
parent
39e7af6238
commit
79aadc85c2
20 changed files with 300 additions and 20 deletions
18
app/views/dialogs/confirmDeletionDialog.html
Normal file
18
app/views/dialogs/confirmDeletionDialog.html
Normal file
|
@ -0,0 +1,18 @@
|
|||
<div class="confirm-deletion-dialog">
|
||||
<div class="modal-header">
|
||||
<i class="cancel-icon" ng-click="cancel()"></i>
|
||||
<h3>Soll der Knoten wirklich gelöscht werden?</h3>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<p>
|
||||
Soll der Knoten „{{node.hostname}}“ wirklich endgültig gelöscht werden?
|
||||
Du kannst ihn selbstverständlich später jederzeit erneut anmelden!
|
||||
</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button class="cancel" ng-click="cancel()">Abbrechen</button>
|
||||
<button class="proceed" ng-click="proceed()">
|
||||
<i class="fa fa-trash"></i> Knoten löschen
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue