summaryrefslogtreecommitdiffstats
path: root/install/static/layouts/default/sudorule-hostgroup-dialog.html
blob: 57d72f387d8b5ff8377479f03a739ce4d61bbdf2 (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
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Adder Dialog</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">

    <div class="adder-dialog-filter">
        <input type="text" name="filter" style="width: 244px">
        <input type="button" name="find" value="Find">
    </div>

    <div class="adder-dialog-results">

        <div name="available" class="adder-dialog-internal">

            <div class="ui-widget-header">
                Available
            </div>

            <table class="search-table scrollable">
                <thead>
                    <tr>
                        <th style="width: 22px;">
                            <input type="checkbox" name="select">
                        </th>
                        <th style="width: 216px;">
                            Host Groups
                        </th>
                    </tr>
                </thead>
                <tbody style="height: 106px;">
                    <tr>
                        <td style="width: 22px;">
                            <input type="checkbox" name="select">
                        </td>
                        <td style="width: 200px;">
                            <span name="cn"></span>
                        </td>
                    </tr>
                </tbody>
                <tfoot>
                    <tr>
                        <td colspan="2">
                            <span name="summary"></span>
                        </td>
                    </tr>
                </tfoot>
            </table>
        </div>

        <div name="buttons" class="adder-dialog-buttons">
            <p><input type="button" name="remove" value="<<"></p>
            <p><input type="button" name="add" value=">>"></p>
        </div>

        <div name="selected" class="adder-dialog-selected">

            <div class="ui-widget-header">
                Prospective
            </div>

            <table class="search-table scrollable">
                <thead>
                    <tr>
                        <th style="width: 22px;">
                            <input type="checkbox" name="select">
                        </th>
                        <th style="width: 216px;">
                            Host Groups
                        </th>
                    </tr>
                </thead>
                <tbody style="height: 151px;">
                    <tr>
                        <td style="width: 22px;">
                            <input type="checkbox" name="select">
                        </td>
                        <td style="width: 200px;">
                            <span name="cn"></span>
                        </td>
                    </tr>
                </tbody>
                <tfoot>
                    <tr>
                        <td colspan="2">
                            <span name="summary"></span>
                        </td>
                    </tr>
                </tfoot>
            </table>
        </div>

        <div name="external" class="adder-dialog-external">

            <div class="ui-widget-header">
                External
            </div>

            <input type="text" name="external" style="width: 244px">
        </div>

    </div>
</div>
</body>
</html>