summaryrefslogtreecommitdiffstats
path: root/webui_templates
diff options
context:
space:
mode:
authorJames Laska <jlaska@redhat.com>2008-11-18 11:53:59 -0500
committerJames Laska <jlaska@redhat.com>2008-11-18 11:53:59 -0500
commit26868451a70f95e844cdffa439d36cc7f5f9b62c (patch)
tree57efd5d909e0e13744fe3a385c7f0fcdbbb04c1d /webui_templates
parent2d30c04ed8a1897f5f3d3d3cf81e58c9291a67f5 (diff)
downloadcobbler-26868451a70f95e844cdffa439d36cc7f5f9b62c.tar.gz
cobbler-26868451a70f95e844cdffa439d36cc7f5f9b62c.tar.xz
cobbler-26868451a70f95e844cdffa439d36cc7f5f9b62c.zip
Add ppc and ppc64 architecture radio options to repo_edit.tmpl
Diffstat (limited to 'webui_templates')
-rw-r--r--webui_templates/repo_edit.tmpl10
1 files changed, 10 insertions, 0 deletions
diff --git a/webui_templates/repo_edit.tmpl b/webui_templates/repo_edit.tmpl
index 3ed74a93..6ac2de48 100644
--- a/webui_templates/repo_edit.tmpl
+++ b/webui_templates/repo_edit.tmpl
@@ -218,6 +218,16 @@ function disablename(value)
#else
<input type="radio" name="arch" id="arch" value="x86_64">x86_64
#end if
+ #if $repo and $repo.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 $repo and $repo.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 $repo and $repo.arch == "s390x"
<input type="radio" name="arch" id="arch" value="s390x" checked>s390x
#else