diff options
Diffstat (limited to 'install/static/layouts/default/hbacrule-details-service.html')
-rwxr-xr-x | install/static/layouts/default/hbacrule-details-service.html | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/install/static/layouts/default/hbacrule-details-service.html b/install/static/layouts/default/hbacrule-details-service.html new file mode 100755 index 000000000..77e8420d3 --- /dev/null +++ b/install/static/layouts/default/hbacrule-details-service.html @@ -0,0 +1,78 @@ +<html> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <title>Via Service</title> + + <link rel="stylesheet" type="text/css" href="jquery-ui.css" /> + <link rel="stylesheet" type="text/css" href="ipa.css" /> +</head> +<body> +<div id="contents"> + Rule applies when access is requested via: + <span name="servicecategory"> + <input type="radio" name="servicecategory" value="all"/>Any Service + <input type="radio" name="servicecategory" value=""/>Specified Services and Groups + <span name="undo" class="ui-state-highlight ui-corner-all" style="display: none;">undo</span> + </span> + <br/> + + <span name="memberservice_hbacsvc"> + <table class="search-table"> + <thead> + <tr> + <th style="width: 25px;"> + <input type="checkbox" name="select"/> + </th> + <th> + <span style="float: left;">Service</span> + <span name="buttons" style="float: right;"> + <input type="button" name="remove" value="Remove Services"/> + <input type="button" name="add" value="Add Services"/> + </span> + </th> + </tr> + </thead> + <tbody> + <tr> + <td> + <input type="checkbox" name="select" value="service"/> + </td> + <td> + <span name="memberservice_hbacsvc">service</span> + </td> + </tr> + </tbody> + </table> + </span> + + <span name="memberservice_hbacsvcgroup"> + <table class="search-table"> + <thead> + <tr> + <th style="width: 25px;"> + <input type="checkbox" name="select"/> + </th> + <th> + <span style="float: left;">Service Group</span> + <span name="buttons" style="float: right;"> + <input type="button" name="remove" value="Remove Service Groups"/> + <input type="button" name="add" value="Add Service Groups"/> + </span> + </th> + </tr> + </thead> + <tbody> + <tr> + <td> + <input type="checkbox" name="select" value="services"/> + </td> + <td> + <span name="memberservice_hbacsvcgroup">services</span> + </td> + </tr> + </tbody> + </table> + </span> +</div> +</body> +</html>
\ No newline at end of file |