OLD | NEW |
1 <!-- | 1 <!-- |
2 - This file is part of the Adblock Plus web scripts, | 2 - This file is part of the Adblock Plus web scripts, |
3 - Copyright (C) 2006-2012 Eyeo GmbH | 3 - Copyright (C) 2006-2012 Eyeo GmbH |
4 - | 4 - |
5 - Adblock Plus is free software: you can redistribute it and/or modify | 5 - Adblock Plus is free software: you can redistribute it and/or modify |
6 - it under the terms of the GNU General Public License version 3 as | 6 - it under the terms of the GNU General Public License version 3 as |
7 - published by the Free Software Foundation. | 7 - published by the Free Software Foundation. |
8 - | 8 - |
9 - Adblock Plus is distributed in the hope that it will be useful, | 9 - Adblock Plus is distributed in the hope that it will be useful, |
10 - but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 - but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 </tr> | 79 </tr> |
80 {% if comment -%} | 80 {% if comment -%} |
81 <tr id="commentRow"> | 81 <tr id="commentRow"> |
82 <td class="label">Comment:</td> | 82 <td class="label">Comment:</td> |
83 <td>{{comment|keepnewlines}}</td> | 83 <td>{{comment|keepnewlines}}</td> |
84 </tr> | 84 </tr> |
85 {% endif -%} | 85 {% endif -%} |
86 {% if email -%} | 86 {% if email -%} |
87 <tr id="emailRow"> | 87 <tr id="emailRow"> |
88 <td class="label">Email:</td> | 88 <td class="label">Email:</td> |
89 <td id="emailCell">{{email}}</td> | 89 <td id="emailCell"><a href="/user/{{uid}}">{{email}}</a></td> |
90 </tr> | 90 </tr> |
91 {% endif -%} | 91 {% endif -%} |
92 </table> | 92 </table> |
93 | 93 |
94 <ul class="tabStrip"> | 94 <ul class="tabStrip"> |
95 {% if requests -%} | 95 {% if requests -%} |
96 <li class="tab" id="requestsTab" onclick="selectTab('requests');">Requests
</li> | 96 <li class="tab" id="requestsTab" onclick="selectTab('requests');">Requests
</li> |
97 {% endif %} | 97 {% endif %} |
98 {% if filters -%} | 98 {% if filters -%} |
99 <li class="tab" id="filtersTab" onclick="selectTab('filters');">Filters</l
i> | 99 <li class="tab" id="filtersTab" onclick="selectTab('filters');">Filters</l
i> |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
301 <td class="warningMessage">{{warnings[key]}}</td> | 301 <td class="warningMessage">{{warnings[key]}}</td> |
302 </tr> | 302 </tr> |
303 {% endfor -%} | 303 {% endfor -%} |
304 </tbody> | 304 </tbody> |
305 </table> | 305 </table> |
306 </div> | 306 </div> |
307 {%- endif %} | 307 {%- endif %} |
308 </div> | 308 </div> |
309 </body> | 309 </body> |
310 </html> | 310 </html> |
OLD | NEW |