summaryrefslogtreecommitdiffstats
path: root/webui_templates
diff options
context:
space:
mode:
authorJames Laska <jlaska@redhat.com>2008-11-18 11:40:50 -0500
committerJames Laska <jlaska@redhat.com>2008-11-18 11:40:50 -0500
commit2d30c04ed8a1897f5f3d3d3cf81e58c9291a67f5 (patch)
treea91fac12a8a80e1f090277c637087bb885693c47 /webui_templates
parent8e03fba81bee56bc2baae6f71066bd5a76d280da (diff)
downloadcobbler-2d30c04ed8a1897f5f3d3d3cf81e58c9291a67f5.tar.gz
cobbler-2d30c04ed8a1897f5f3d3d3cf81e58c9291a67f5.tar.xz
cobbler-2d30c04ed8a1897f5f3d3d3cf81e58c9291a67f5.zip
Add ppc and ppc64 architecture radio optiosn to distro_edit.tmpl
Diffstat (limited to 'webui_templates')
-rw-r--r--webui_templates/distro_edit.tmpl12
1 files changed, 12 insertions, 0 deletions
diff --git a/webui_templates/distro_edit.tmpl b/webui_templates/distro_edit.tmpl
index 8681d8a6..2e772b4b 100644
--- a/webui_templates/distro_edit.tmpl
+++ b/webui_templates/distro_edit.tmpl
@@ -151,6 +151,18 @@ function disablename(value)
<input type="radio" name="arch" id="arch" value="x86_64">x86_64
#end if
+ #if $distro and $distro.arch == "ppc"
+ <input type="radio" name="arch" id="arch" value="ppc" checked>ppc
+ #else
+ <input type="radio" name="arch" id="arch" value="ppc">ppc
+ #end if
+
+ #if $distro and $distro.arch == "ppc64"
+ <input type="radio" name="arch" id="arch" value="ppc64" checked>ppc64
+ #else
+ <input type="radio" name="arch" id="arch" value="ppc64">ppc64
+ #end if
+
#if $distro and $distro.arch == "s390x"
<input type="radio" name="arch" id="arch" value="s390x" checked>s390x
#else