Skip to content

Commit 9873c49

Browse files
rajatgupta21alinefm
authored andcommitted
For s390x hide Netboot template for Virtualization Add Template
For s390x hide Netboot template for Virtualization Add Template Signed-off-by: Rajat Gupta <[email protected]>
1 parent 42b48bd commit 9873c49

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

ui/js/src/kimchi.template_add_main.js

+5
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ kimchi.template_add_main = function() {
2323
var isos = [];
2424
var local_isos = [];
2525
var remote_isos = [];
26+
var s390xArch = 's390x';
2627

2728
var deepScan = function(button) {
2829
kimchi.deepScanHandler = kimchi.stepListDeepScanIsos(function(isos, isFinished) {
@@ -471,6 +472,10 @@ kimchi.template_add_main = function() {
471472
}
472473
}
473474
};
475+
476+
if(kimchi.hostarch === s390xArch){
477+
$('#template-add-window .netboot-template').hide();
478+
}
474479
};
475480

476481
kimchi.template_check_url = function(url) {

ui/pages/template-add.html.tmpl

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
<h5>$_("Where is the source media for this template? ")</h5>
3535
<input type="radio" checked="checked" name="iso-source" id="image-src" value="image-src" class="wok-radio">
3636
<label for="image-src">$_("Image Template")</label>
37-
<input type="radio" name="iso-source" id="netboot-src" value="netboot-src" class="wok-radio">
38-
<label for="netboot-src">$_("Netboot Template")</label>
37+
<input type="radio" name="iso-source" id="netboot-src" value="netboot-src" class="wok-radio netboot-template">
38+
<label for="netboot-src" class="netboot-template">$_("Netboot Template")</label>
3939
</div>
4040
</div>
4141
<div class="template-pager">

0 commit comments

Comments
 (0)