OLD | NEW |
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 | 17 |
18 {%- macro process_subscription(subscription, parent=None) %} | 18 {%- macro process_subscription(subscription, parent=None) %} |
19 <tr{% if subscription["deprecated"] %} class="deprecated"{% endif %}> | 19 <tr{% if subscription["deprecated"] %} class="deprecated"{% endif %}> |
20 {%- if subscription["supplements"] %} | 20 {%- if parent and subscription["supplements"] %} |
21 <td rowspan="2" class="dummy"></td> | 21 <td rowspan="2" class="dummy"></td> |
22 <td rowspan="2"> | 22 <td rowspan="2"> |
23 {%- else %} | 23 {%- else %} |
24 <td rowspan="2" colspan="2"> | 24 <td rowspan="2" colspan="2"> |
25 {%- endif %} | 25 {%- endif %} |
26 <strong class="subscriptionTitle">{{ subscription["name"] }}</strong><br> | 26 <strong class="subscriptionTitle">{{ subscription["name"] }}</strong><br> |
27 {{ subscription["specialization"] }} | 27 {{ subscription["specialization"] }} |
28 {%- if subscription["supplements"] %} | 28 {%- if subscription["supplements"] %} |
29 <br>{{ "supplement for"|translate("supplements_prefix") }} {{ ' / '.join(s
ubscription["supplements"]) }} {{ " "|translate("supplements_suffix") }} | 29 <br>{{ "supplement for"|translate("supplements_prefix") }} {{ ' / '.join(s
ubscription["supplements"]) }} {{ " "|translate("supplements_suffix") }} |
30 {%- endif %} | 30 {%- endif %} |
(...skipping 30 matching lines...) Expand all Loading... |
61 </td> | 61 </td> |
62 </tr> | 62 </tr> |
63 {%- if not parent -%} | 63 {%- if not parent -%} |
64 {%- for supplement in subscription["supplemented"]|subscription_sort -%} | 64 {%- for supplement in subscription["supplemented"]|subscription_sort -%} |
65 {{ process_subscription(supplement, subscription) }} | 65 {{ process_subscription(supplement, subscription) }} |
66 {%- endfor -%} | 66 {%- endfor -%} |
67 {%- endif -%} | 67 {%- endif -%} |
68 {%- endmacro %} | 68 {%- endmacro %} |
69 | 69 |
70 {% macro display_subscriptions(subscriptions) %} | 70 {% macro display_subscriptions(subscriptions) %} |
71 {%- set current_type = subscriptions[0]["type"] -%} | |
72 <h2>{{ get_string("type_" + current_type, "subscriptions") }}</h2> | |
73 | |
74 <table class="subscriptions"> | |
75 {%- for subscription in subscriptions|subscription_sort -%} | 71 {%- for subscription in subscriptions|subscription_sort -%} |
76 {%- if not subscription["supplements"] -%} | 72 {%- if not (subscription["supplements"] and current_type == subscription["ty
pe"]) -%} |
77 {%- if current_type != subscription["type"] -%} | 73 {%- if current_type != subscription["type"] -%} |
| 74 {%- if current_type %} |
| 75 </table> |
| 76 {%- endif -%} |
78 {%- set current_type = subscription["type"] %} | 77 {%- set current_type = subscription["type"] %} |
79 </table> | 78 <h2 id="type_{{ current_type }}">{{ get_string("type_" + current_type, "subscr
iptions") }}</h2> |
80 | |
81 <h2>{{ get_string("type_" + current_type, "subscriptions") }}</h2> | |
82 | 79 |
83 <table class="subscriptions"> | 80 <table class="subscriptions"> |
84 {%- endif -%} | 81 {%- endif -%} |
| 82 {%- endif -%} |
| 83 {%- if subscription["type"] not in subscription["supplementsType"] -%} |
85 {{ process_subscription(subscription) }} | 84 {{ process_subscription(subscription) }} |
86 {%- endif -%} | 85 {%- endif -%} |
87 {%- endfor %} | 86 {%- endfor %} |
88 </table> | 87 </table> |
89 {% endmacro %} | 88 {% endmacro %} |
OLD | NEW |