Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(773)

Side by Side Diff: app/templates/filters.handlebars

Issue 9131043: Fixes bad strings in the filters
Patch Set: Fixes bad strings in the filters Created 11 years, 11 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « app/models/browser.js ('k') | app/widgets/filter.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <div> 1 <div>
2 <div> 2 <div>
3 <h4>Charm type</h4> 3 <h4>Charm type</h4>
4 <ul id="search-filter-type"> 4 <ul id="search-filter-type">
5 {{#type}} 5 {{#type}}
6 <li><input type="checkbox" value="{{ value }}" 6 <li><input type="checkbox" value="{{ value }}"
7 {{#if checked}}checked="checked"{{/if}} />{{name}} 7 {{#if checked}}checked="checked"{{/if}} />{{name}}
8 </li> 8 </li>
9 {{/type}} 9 {{/type}}
10 </ul> 10 </ul>
11 </div> 11 </div>
12 12
13 <div> 13 <div>
14 <h4>Charm categories</h4> 14 <h4>Charm categories</h4>
15 <ul id="search-filter-category"> 15 <ul id="search-filter-categories">
16 {{#category}} 16 {{#categories}}
17 <li><input type="checkbox" value="{{ value }}" 17 <li><input type="checkbox" value="{{ value }}"
18 {{#if checked}}checked="checked"{{/if}} />{{name}} 18 {{#if checked}}checked="checked"{{/if}} />{{name}}
19 </li> 19 </li>
20 {{/category}} 20 {{/categories}}
21 </ul> 21 </ul>
22 </div> 22 </div>
23 23
24 <div> 24 <div>
25 <h4>Ubuntu series</h4> 25 <h4>Ubuntu series</h4>
26 <ul id="search-filter-series"> 26 <ul id="search-filter-series">
27 {{#series}} 27 {{#series}}
28 <li><input type="checkbox" value="{{ value }}" 28 <li><input type="checkbox" value="{{ value }}"
29 {{#if checked}}checked="checked"{{/if}} />{{name}} 29 {{#if checked}}checked="checked"{{/if}} />{{name}}
30 </li> 30 </li>
31 {{/series}} 31 {{/series}}
32 </ul> 32 </ul>
33 </div> 33 </div>
34 34
35 <div> 35 <div>
36 <h4>Providers</h4> 36 <h4>Providers</h4>
37 37
38 <ul id="search-filter-provider"> 38 <ul id="search-filter-provider">
39 {{#provider}} 39 {{#provider}}
40 <li><input type="checkbox" value="{{ value }}" 40 <li><input type="checkbox" value="{{ value }}"
41 {{#if checked}}checked="checked"{{/if}} />{{name}} 41 {{#if checked}}checked="checked"{{/if}} />{{name}}
42 </li> 42 </li>
43 {{/provider}} 43 {{/provider}}
44 </ul> 44 </ul>
45 </div> 45 </div>
46 46
47 </div> 47 </div>
OLDNEW
« no previous file with comments | « app/models/browser.js ('k') | app/widgets/filter.js » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b