diff options
author | Rob Crittenden <rcritten@redhat.com> | 2010-11-04 15:13:08 -0400 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2010-11-04 15:13:08 -0400 |
commit | db758c92cd4865ae02c8da357ce5e850a060a4ad (patch) | |
tree | 96bd6a549725d0a5b78f4fc54d752cf94a5a9894 /install/static/layouts/default/hbac-details-sourcehost.html | |
parent | 7b296f2623610b0820a5553e2c570c6b3428c861 (diff) | |
parent | d99ebc0f3798c84e612c79c43eb85c31b20ab1ce (diff) | |
download | freeipa.git-db758c92cd4865ae02c8da357ce5e850a060a4ad.tar.gz freeipa.git-db758c92cd4865ae02c8da357ce5e850a060a4ad.tar.xz freeipa.git-db758c92cd4865ae02c8da357ce5e850a060a4ad.zip |
Merge branch 'master' of ssh://rcritten@git.fedorahosted.org/git/freeipa
Diffstat (limited to 'install/static/layouts/default/hbac-details-sourcehost.html')
-rwxr-xr-x | install/static/layouts/default/hbac-details-sourcehost.html | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/install/static/layouts/default/hbac-details-sourcehost.html b/install/static/layouts/default/hbac-details-sourcehost.html new file mode 100755 index 00000000..12e934c0 --- /dev/null +++ b/install/static/layouts/default/hbac-details-sourcehost.html @@ -0,0 +1,75 @@ +<html> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <title>From</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 being initiated from: + <input type="radio" name="sourcehostcategory" value="all"/>Any Host + <input type="radio" name="sourcehostcategory" value=""/>Specified Hosts and Groups + <br/> + + <div id="hbac-sourcehost_host"> + <table class="search-table"> + <thead> + <tr> + <th style="width: 25px;"> + <input type="checkbox" name="select"/> + </th> + <th> + <span style="float: left;">Host</span> + <span name="buttons" style="float: right;"> + <input type="button" name="remove" value="Remove Hosts"/> + <input type="button" name="add" value="Add Hosts"/> + </span> + </th> + </tr> + </thead> + <tbody> + <tr> + <td> + <input type="checkbox" name="select" value="host"/> + </td> + <td> + <span name="sourcehost_host">host</span> + </td> + </tr> + </tbody> + </table> + </div> + + <div id="hbac-sourcehost_hostgroup"> + <table class="search-table"> + <thead> + <tr> + <th style="width: 25px;"> + <input type="checkbox" name="select"/> + </th> + <th> + <span style="float: left;">Host Group</span> + <span name="buttons" style="float: right;"> + <input type="button" name="remove" value="Remove Host Groups"/> + <input type="button" name="add" value="Add Host Groups"/> + </span> + </th> + </tr> + </thead> + <tbody> + <tr> + <td> + <input type="checkbox" name="select" value="hosts"/> + </td> + <td> + <span name="sourcehost_hostgroup">hosts</span> + </td> + </tr> + </tbody> + </table> + </div> +</div> +</body> +</html>
\ No newline at end of file |