Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: includes/preftable.tmpl

Issue 5636796054503424: Issue 1170 - [adblockplus.org Anwiki to CMS migration] Migrate content (Closed)
Left Patch Set: Addressed more comments. Created Feb. 26, 2015, 9:47 p.m.
Right Patch Set: Remove includes/common.tmpl which is no longer required. Created March 7, 2015, 7:01 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « includes/interface.tmpl ('k') | includes/subscriptionList.tmpl » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 {# 1 {#
2 # This file is part of the Adblock Plus website, 2 # This file is part of the Adblock Plus website,
3 # Copyright (C) 2006-2015 Eyeo GmbH 3 # Copyright (C) 2006-2015 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
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details. 12 # GNU General Public License for more details.
13 # 13 #
14 # You should have received a copy of the GNU General Public License 14 # You should have received a copy of the GNU General Public License
15 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. 15 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
16 #} 16 #}
17 {% from "includes/common" import description with context %}
18 17
19 {% macro display_preftable(preftable, links) %} 18 {% macro display_preftable(preftable, links) %}
20 <table id="preftable"> 19 <table id="preftable">
21 <tbody> 20 <tbody>
22 <tr> 21 <tr>
23 <th width="30%">{{"prefnamecol"|translate}}</th> 22 <th width="30%">{{ "prefnamecol"|translate }}</th>
24 <th width="20%">{{"defaultcol"|translate}}</th> 23 <th width="20%">{{ "defaultcol"|translate }}</th>
25 <th width="50%">{{"descriptioncol"|translate}}</th> 24 <th width="50%">{{ "descriptioncol"|translate }}</th>
26 </tr> 25 </tr>
27 {% for section in preftable %} 26 {% for section in preftable %}
28 <tr id="{{ section.id }}"> 27 <tr id="{{ section.id }}">
29 <td class="section" colspan="3">{{ (section.id + "Title")|translate }} </td> 28 <td class="section" colspan="3">{{ section.title }}</td>
30 </tr> 29 </tr>
31 {% for preference in section.preferences %} 30 {% for preference in section.preferences %}
32 <tr id="{{ preference.name }}"> 31 <tr id="{{ preference.name }}">
33 <td> 32 <td>
34 <span>extensions.</span> 33 <span>extensions.</span>
35 <span>adblockplus.</span> 34 <span>adblockplus.</span>
36 <span class="prefname">{{ preference.name }}</span> 35 <span class="prefname">{{ preference.name }}</span>
37 </td> 36 </td>
38 {% if preference.default %} 37 {% if preference.default %}
39 <td>{{ preference.default }}</td> 38 <td>{{ preference.default }}</td>
40 {% elif preference.default is not string %} 39 {% elif preference.default is none or
Wladimir Palant 2015/02/26 22:01:46 preference.default is none? We might use actual nu
kzar 2015/02/26 22:12:17 I did this because the conversion script annoyingl
Wladimir Palant 2015/02/26 22:15:34 I guess we can still get rid of null after the con
40 preference.default is undefined %}
41 <td><em>empty</em></td> 41 <td><em>empty</em></td>
42 {% else %} 42 {% else %}
43 <td>&nbsp</td> 43 <td>&nbsp</td>
44 {% endif %} 44 {% endif %}
45 <td>{{ description(preference.name + "Description", links, "", "<br> ") }}</td> 45 <td>{{ preference.description() }}</td>
46 </tr> 46 </tr>
47 {% endfor %} 47 {% endfor %}
48 {% endfor %} 48 {% endfor %}
49 </tbody> 49 </tbody>
50 </table> 50 </table>
51 {% endmacro %} 51 {% endmacro %}
LEFTRIGHT

Powered by Google App Engine
This is Rietveld