summaryrefslogtreecommitdiffstats
path: root/webui_templates
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@mdehaan.rdu.redhat.com>2007-09-12 16:02:54 -0400
committerMichael DeHaan <mdehaan@mdehaan.rdu.redhat.com>2007-09-12 16:02:54 -0400
commit1d215c67c7404d37ca833acdcfe75b1bd515b592 (patch)
treed9483f546a650a9f696b41a3696a88af2bd0dbe0 /webui_templates
parent27e40ba1ab0412e7d47a8858193120d766841587 (diff)
downloadthird_party-cobbler-1d215c67c7404d37ca833acdcfe75b1bd515b592.tar.gz
third_party-cobbler-1d215c67c7404d37ca833acdcfe75b1bd515b592.tar.xz
third_party-cobbler-1d215c67c7404d37ca833acdcfe75b1bd515b592.zip
Adding additional exception handling and logging to WebUI.
Diffstat (limited to 'webui_templates')
-rw-r--r--webui_templates/system_edit.tmpl16
1 files changed, 16 insertions, 0 deletions
diff --git a/webui_templates/system_edit.tmpl b/webui_templates/system_edit.tmpl
index 0b76b95..045a667 100644
--- a/webui_templates/system_edit.tmpl
+++ b/webui_templates/system_edit.tmpl
@@ -65,6 +65,22 @@
/>
<br/>
+ <label for="netboot">Netboot Enabled</label>
+ #if $system
+ <input type="checkbox" checked="$system.netboot_enabled" name="netboot" id="netboot">
+ #else
+ <input type="checkbox" checked="True" name="netboot" id="netboot">
+ #end if
+ <br/>
+
+ <label for="dhcp_tag">DHCP Tag</label>
+ <input type="text" size="128" style="width: 150px;" name="dhcp_tag" id="dhcp_tag"
+ #if $system
+ value="$system.dhcp_tag"
+ #end if
+ />
+ <br/>
+
<input type="submit" name="submit" value="Save"/>
<input type="reset" name="reset" value="Reset"/>
</fieldset>