OLD | NEW |
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <html i18n-values="dir:textdirection"> | 2 <html i18n-values="dir:textdirection"> |
3 <head> | 3 <head> |
4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
5 <title i18n-content="policyTitle"></title> | 5 <title i18n-content="policyTitle"></title> |
6 <link rel="stylesheet" href="chrome://resources/css/button.css"> | 6 <link rel="stylesheet" href="chrome://resources/css/button.css"> |
7 <link rel="stylesheet" href="policy.css"> | 7 <link rel="stylesheet" href="policy.css"> |
8 <link rel="stylesheet" href="webui.css"> | 8 <link rel="stylesheet" href="webui.css"> |
9 <script src="chrome://policy/strings.js"></script> | 9 <script src="chrome://policy/strings.js"></script> |
10 <script src="chrome://resources/js/cr.js"></script> | 10 <script src="chrome://resources/js/cr.js"></script> |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 </div> | 99 </div> |
100 </div> | 100 </div> |
101 <div> | 101 <div> |
102 <div id="no-policies" hidden jsdisplay="!anyPoliciesSet"> | 102 <div id="no-policies" hidden jsdisplay="!anyPoliciesSet"> |
103 <div id="no-policies-text" i18n-content="noPoliciesSet"></div> | 103 <div id="no-policies-text" i18n-content="noPoliciesSet"></div> |
104 </div> | 104 </div> |
105 <div id="policies" jsvalues=".style.display: anyPoliciesSet ? | 105 <div id="policies" jsvalues=".style.display: anyPoliciesSet ? |
106 '': 'none'"> | 106 '': 'none'"> |
107 <table id="policy-table"> | 107 <table id="policy-table"> |
108 <tr> | 108 <tr> |
| 109 <!-- TODO(joaodasilva): http://crbug.com/102114 |
109 <th i18n-content="appliesToTableHeader"></th> | 110 <th i18n-content="appliesToTableHeader"></th> |
| 111 --> |
110 <th i18n-content="policyLevelTableHeader"></th> | 112 <th i18n-content="policyLevelTableHeader"></th> |
111 <th i18n-content="policyNameTableHeader"></th> | 113 <th i18n-content="policyNameTableHeader"></th> |
112 <th i18n-content="policyValueTableHeader"></th> | 114 <th i18n-content="policyValueTableHeader"></th> |
113 <th i18n-content="policyStatusTableHeader"></th> | 115 <th i18n-content="policyStatusTableHeader"></th> |
114 </tr> | 116 </tr> |
115 <tr jsselect="policies" | 117 <tr jsselect="policies" |
116 jsvalues=".className: $this.set ? | 118 jsvalues=".className: $this.set ? |
117 'policy-set': 'policy-unset'; | 119 'policy-set': 'policy-unset'; |
118 .hidden: !Policy.shouldDisplayPolicy($this)"> | 120 .hidden: !Policy.shouldDisplayPolicy($this)"> |
| 121 <!-- TODO(joaodasilva): http://crbug.com/102114 |
119 <td> | 122 <td> |
120 <span class="policy-type" jscontent="sourceType"></span> | 123 <span class="policy-type" jscontent="sourceType"></span> |
121 </td> | 124 </td> |
| 125 --> |
122 <td> | 126 <td> |
123 <span class="policy-level" jscontent="level"></span> | 127 <span class="policy-level" jscontent="level"></span> |
124 </td> | 128 </td> |
125 <td class="collapsed"> | 129 <td class="collapsed"> |
126 <span class="policy-name" jscontent="name"></span> | 130 <span class="policy-name" jscontent="name"></span> |
127 </td> | 131 </td> |
128 <td> | 132 <td> |
129 <div class="text-container collapsed"> | 133 <div class="text-container collapsed"> |
130 <span class="cell-text" jscontent="value"></span> | 134 <span class="cell-text" jscontent="value"></span> |
131 </div> | 135 </div> |
(...skipping 15 matching lines...) Expand all Loading... |
147 </td> | 151 </td> |
148 </tr> | 152 </tr> |
149 </table> | 153 </table> |
150 </div> | 154 </div> |
151 </div> | 155 </div> |
152 </section> | 156 </section> |
153 </div> | 157 </div> |
154 </div> | 158 </div> |
155 </body> | 159 </body> |
156 </html> | 160 </html> |
OLD | NEW |