2007-11-12 13:19:05 -06:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
|
|
|
|
py:extends="'policylayout.kid'">
|
|
|
|
<head>
|
|
|
|
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
|
|
|
|
<title>Manage IPA Policy</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<?python
|
|
|
|
from ipagui.helpers import ipahelper
|
|
|
|
edit_url = tg.url('/ipapolicy/edit')
|
|
|
|
?>
|
|
|
|
|
|
|
|
<script type="text/javascript" charset="utf-8" src="${tg.url('/static/javascript/tablekit.js')}"></script>
|
|
|
|
|
|
|
|
<h1>Manage IPA Policy</h1>
|
|
|
|
|
|
|
|
<h2 class="formsection">Search</h2>
|
|
|
|
<table class="formtable" cellpadding="2" cellspacing="0" border="0">
|
|
|
|
<tr>
|
|
|
|
<th>
|
2007-11-16 11:59:32 -06:00
|
|
|
<label class="fieldlabel" py:content="fields.ipasearchtimelimit.label" />:
|
2007-11-12 13:19:05 -06:00
|
|
|
</th>
|
2007-11-16 11:59:32 -06:00
|
|
|
<td>${ipapolicy.get("ipasearchtimelimit")}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>
|
|
|
|
<label class="fieldlabel" py:content="fields.ipasearchrecordslimit.label" />:
|
|
|
|
</th>
|
|
|
|
<td>${ipapolicy.get("ipasearchrecordslimit")}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>
|
|
|
|
<label class="fieldlabel" py:content="fields.ipausersearchfields.label" />:
|
|
|
|
</th>
|
|
|
|
<td>${ipapolicy.get("ipausersearchfields")}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>
|
|
|
|
<label class="fieldlabel" py:content="fields.ipagroupsearchfields.label" />:
|
|
|
|
</th>
|
|
|
|
<td>${ipapolicy.get("ipagroupsearchfields")}</td>
|
2007-11-12 13:19:05 -06:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<h2 class="formsection">Password Policy</h2>
|
|
|
|
<table class="formtable" cellpadding="2" cellspacing="0" border="0">
|
|
|
|
<tr>
|
|
|
|
<th>
|
2007-11-16 11:59:32 -06:00
|
|
|
<label class="fieldlabel" py:content="fields.ipapwdexpadvnotify.label" />:
|
|
|
|
</th>
|
|
|
|
<td>${ipapolicy.get("ipapwdexpadvnotify")}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>
|
|
|
|
<label class="fieldlabel" py:content="fields.krbminpwdlife.label" />:
|
|
|
|
</th>
|
|
|
|
<td>${password.get("krbminpwdlife")}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>
|
|
|
|
<label class="fieldlabel" py:content="fields.krbmaxpwdlife.label" />:
|
|
|
|
</th>
|
|
|
|
<td>${password.get("krbmaxpwdlife")}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>
|
|
|
|
<label class="fieldlabel" py:content="fields.krbpwdmindiffchars.label" />:
|
|
|
|
</th>
|
|
|
|
<td>${password.get("krbpwdmindiffchars")}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>
|
|
|
|
<label class="fieldlabel" py:content="fields.krbpwdminlength.label" />:
|
|
|
|
</th>
|
|
|
|
<td>${password.get("krbpwdminlength")}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>
|
|
|
|
<label class="fieldlabel" py:content="fields.krbpwdhistorylength.label" />:
|
2007-11-12 13:19:05 -06:00
|
|
|
</th>
|
2007-11-16 11:59:32 -06:00
|
|
|
<td>${password.get("krbpwdhistorylength")}</td>
|
2007-11-12 13:19:05 -06:00
|
|
|
</tr>
|
2007-11-13 14:36:52 -06:00
|
|
|
</table>
|
|
|
|
<h2 class="formsection">User Settings</h2>
|
|
|
|
<table class="formtable" cellpadding="2" cellspacing="0" border="0">
|
2007-11-12 13:19:05 -06:00
|
|
|
<tr>
|
|
|
|
<th>
|
2007-11-16 11:59:32 -06:00
|
|
|
<label class="fieldlabel" py:content="fields.ipamaxusernamelength.label" />:
|
2007-11-12 13:19:05 -06:00
|
|
|
</th>
|
2007-11-16 11:59:32 -06:00
|
|
|
<td>${ipapolicy.get("ipamaxusernamelength")}</td>
|
2007-11-12 13:19:05 -06:00
|
|
|
</tr>
|
2007-11-13 14:36:52 -06:00
|
|
|
<tr>
|
|
|
|
<th>
|
2007-11-16 11:59:32 -06:00
|
|
|
<label class="fieldlabel" py:content="fields.ipahomesrootdir.label" />:
|
2007-11-13 14:36:52 -06:00
|
|
|
</th>
|
2007-11-16 11:59:32 -06:00
|
|
|
<td>${ipapolicy.get("ipahomesrootdir")}</td>
|
2007-11-13 14:36:52 -06:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>
|
2007-11-16 11:59:32 -06:00
|
|
|
<label class="fieldlabel" py:content="fields.ipadefaultloginshell.label" />:
|
2007-11-13 14:36:52 -06:00
|
|
|
</th>
|
2007-11-16 11:59:32 -06:00
|
|
|
<td>${ipapolicy.get("ipadefaultloginshell")}</td>
|
2007-11-13 14:36:52 -06:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>
|
2007-11-16 11:59:32 -06:00
|
|
|
<label class="fieldlabel" py:content="fields.ipadefaultprimarygroup.label" />:
|
2007-11-13 14:36:52 -06:00
|
|
|
</th>
|
2007-11-16 11:59:32 -06:00
|
|
|
<td>${ipapolicy.get("ipadefaultprimarygroup")}</td>
|
2007-11-13 14:36:52 -06:00
|
|
|
</tr>
|
2007-12-04 12:18:37 -06:00
|
|
|
<tr>
|
|
|
|
<th>
|
|
|
|
<label class="fieldlabel" py:content="fields.ipauserobjectclasses.label" />:
|
|
|
|
</th>
|
|
|
|
<td>
|
|
|
|
<table cellpadding="2" cellspacing="0" border="0">
|
|
|
|
<tbody>
|
|
|
|
<?python
|
|
|
|
index = 0
|
|
|
|
values = ipapolicy.get("ipauserobjectclasses", '')
|
|
|
|
if isinstance(values, str):
|
|
|
|
values = [values]
|
|
|
|
?>
|
|
|
|
<tr py:for="index in range(len(values))">
|
|
|
|
<td>${values[index]}</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>
|
|
|
|
<label class="fieldlabel" py:content="fields.ipagroupobjectclasses.label" />:
|
|
|
|
</th>
|
|
|
|
<td>
|
|
|
|
<table cellpadding="2" cellspacing="0" border="0">
|
|
|
|
<tbody>
|
|
|
|
<?python
|
|
|
|
index = 0
|
|
|
|
values = ipapolicy.get("ipagroupobjectclasses", '')
|
|
|
|
if isinstance(values, str):
|
|
|
|
values = [values]
|
|
|
|
?>
|
|
|
|
<tr py:for="index in range(len(values))">
|
|
|
|
<td>${values[index]}</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2007-11-12 13:19:05 -06:00
|
|
|
</table>
|
|
|
|
<hr />
|
|
|
|
<input class="submitbutton" type="button"
|
|
|
|
onclick="document.location.href='${edit_url}'"
|
|
|
|
value="Edit Policy" />
|
|
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|