1 {% extends
"menu_base.html" %}
4 {% block title %}Delete Cluster{% endblock %}
7 <link rel=
"stylesheet" type=
"text/css" href=
"{{MEDIA_URL}}/css/delete.css"/>
8 <script type=
"text/javascript" src=
"{{MEDIA_URL}}/js/jquery.ajax.delete.js"></script>
9 <script type=
"text/javascript">
10 $(document
).ready(function() {
11 $('#delete').click(function(){
12 href
= "{% url cluster-delete vm.cluster.slug %}";
13 $.delete_(href
, function(){
26 "Are you sure you want to delete this cluster? This action
27 can not be undone. The cluster and all associated virtual machines will
28 be removed from the database.
30 The virtual machines on the cluster will remain unchanged." %}
31 <ul><li>{{cluster.hostname}}
</li></ul>
33 <input id=
"delete" type=
"button" value='{% trans
"Delete" %}'
/>
37 {% trans
"Deleted" %}.