summaryrefslogtreecommitdiffstats
path: root/ipa-server/ipa-gui/ipagui/templates/ipapolicyshow.kid
blob: 089fb494ec50ec2a8c76826cfaf621aecfe057fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!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>
            <label class="fieldlabel" py:content="fields.ipasearchtimelimit.label" />:
          </th>
          <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>
        </tr>
    </table>

    <h2 class="formsection">Password Policy</h2>
    <table class="formtable" cellpadding="2" cellspacing="0" border="0">
        <tr>
          <th>
            <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" />:
          </th>
          <td>${password.get("krbpwdhistorylength")}</td>
        </tr>
    </table>
    <h2 class="formsection">User Settings</h2>
    <table class="formtable" cellpadding="2" cellspacing="0" border="0">
        <tr>
          <th>
            <label class="fieldlabel" py:content="fields.ipamaxusernamelength.label" />:
          </th>
          <td>${ipapolicy.get("ipamaxusernamelength")}</td>
        </tr>
        <tr>
          <th>
            <label class="fieldlabel" py:content="fields.ipahomesrootdir.label" />:
          </th>
          <td>${ipapolicy.get("ipahomesrootdir")}</td>
        </tr>
        <tr>
          <th>
            <label class="fieldlabel" py:content="fields.ipadefaultloginshell.label" />:
          </th>
          <td>${ipapolicy.get("ipadefaultloginshell")}</td>
        </tr>
        <tr>
          <th>
            <label class="fieldlabel" py:content="fields.ipadefaultprimarygroup.label" />:
          </th>
          <td>${ipapolicy.get("ipadefaultprimarygroup")}</td>
        </tr>
    </table>
<hr />
    <input class="submitbutton" type="button"
      onclick="document.location.href='${edit_url}'"
      value="Edit Policy" />


</body>
</html>