Changeset 6315 for trunk/exodus/templates/delnode.html
- Timestamp:
- Sep 25, 2008, 11:45:09 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/exodus/templates/delnode.html
r6310 r6315 3 3 {% block content %} 4 4 5 <h1>Create a Node</h1> 5 <h1>Delete node {{ object.name }}</h1> 6 7 Interfaces to be deleted: 8 <ol> 9 {% for nic in object.interface_set.all %} 10 <li>{{ nic }}</li> 11 {% endfor %} 12 </ol> 13 14 All connected interfaces to be converted to master interfaces: 15 <ol> 16 {% for nic in object.interface_set.all %} 17 {% ifequal nic.link nic %} 18 {% for interlink in nic.link.interface_set.all %} 19 {% ifnotequal interlink nic %} 20 <li> {{ interlink }}</li> 21 {% endifnotequal %} 22 {% endfor %} 23 {% endifequal %} 24 {% endfor %} 25 </ol> 6 26 7 27 <form method="post" action="."> 8 <table>{{ form.as_table }}</table> 9 <input type="submit" value="submit"> 28 <h3>Are you sure you want to <b>DELETE</b> this data <b>PERMANENTLY</b>?</h3> 29 <input type="submit" name="cancel" value="NO, cancel"> 30 <input type="submit" name="proceed" value="OK, proceed"> 10 31 </form> 11 32
Note:
See TracChangeset
for help on using the changeset viewer.