diff options
Diffstat (limited to 'install/ui/hbacrule.js')
-rw-r--r-- | install/ui/hbacrule.js | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/install/ui/hbacrule.js b/install/ui/hbacrule.js index 455ad4d3..8b354312 100644 --- a/install/ui/hbacrule.js +++ b/install/ui/hbacrule.js @@ -595,14 +595,22 @@ IPA.hbacrule_details_general_section = function (spec){ 'value': 'allow' }).appendTo(span); + span.append(' '); + + // TODO: i18n span.append('Allow'); + span.append(' '); + $('<input/>', { 'type': 'radio', 'name': 'accessruletype', 'value': 'deny' }).appendTo(span); + span.append(' '); + + // TODO: i18n span.append('Deny'); span.append(' '); @@ -661,14 +669,22 @@ IPA.hbacrule_details_general_section = function (spec){ 'value': 'TRUE' }).appendTo(span); + span.append(' '); + + // TODO: i18n span.append('Active'); + span.append(' '); + $('<input/>', { 'type': 'radio', 'name': 'ipaenabledflag', 'value': 'FALSE' }).appendTo(span); + span.append(' '); + + // TODO: i18n span.append('Inactive'); span.append(' '); @@ -728,10 +744,12 @@ IPA.hbacrule_accesstime_widget = function (spec) { 'value': option.value }).appendTo(container); + container.append(' '); + container.append(option.label); - } - container.append(' '); + container.append(' '); + } $('<span/>', { 'name': 'undo', |