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

Delta Between Two Patch Sets: app/templates/filters.handlebars

Issue 9003043: Adds filter controls to the search in the browser
Left Patch Set: Adds filter controls to the search in the browser Created 10 years, 11 months ago
Right Patch Set: Adds filter controls to the search in the browser Created 10 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:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « app/templates/charm-container.handlebars ('k') | app/widgets/charm-search.js » ('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 <form> 1 <form>
2 <div> 2 <div>
3 <h2>Charm type</h2> 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 }}" {{#if checked}}checked="c hecked"{{/if}} />{{name}}</li> 6 <li><input type="checkbox" value="{{ value }}"
7 {{#if checked}}checked="checked"{{/if}} />{{name}}
8 </li>
7 {{/type}} 9 {{/type}}
8 </ul> 10 </ul>
9 </div> 11 </div>
10 12
11 <div> 13 <div>
12 <h2>Charm categories</h2> 14 <h4>Charm categories</h4>
13 <ul id="search-filter-category"> 15 <ul id="search-filter-category">
14 {{#category}} 16 {{#category}}
15 <li><input type="checkbox" value="{{ value }}" {{#if checked}}checked="c hecked"{{/if}} />{{name}}</li> 17 <li><input type="checkbox" value="{{ value }}"
18 {{#if checked}}checked="checked"{{/if}} />{{name}}
19 </li>
16 {{/category}} 20 {{/category}}
17 </ul> 21 </ul>
18 </div> 22 </div>
19 23
20 <div> 24 <div>
21 <h2>Ubuntu series</h2> 25 <h4>Ubuntu series</h4>
22 <ul id="search-filter-series"> 26 <ul id="search-filter-series">
23 {{#series}} 27 {{#series}}
24 <li><input type="checkbox" value="{{ value }}" {{#if checked}}checked="c hecked"{{/if}} />{{name}}</li> 28 <li><input type="checkbox" value="{{ value }}"
29 {{#if checked}}checked="checked"{{/if}} />{{name}}
30 </li>
25 {{/series}} 31 {{/series}}
26 </ul> 32 </ul>
27 </div> 33 </div>
28 34
29 <div> 35 <div>
30 <h2>Providers</h2> 36 <h4>Providers</h4>
31 37
32 <ul id="search-filter-providers"> 38 <ul id="search-filter-provider">
33 {{#provider}} 39 {{#provider}}
34 <li><input type="checkbox" value="{{ value }}" {{#if checked}}checked="c hecked"{{/if}} />{{name}}</li> 40 <li><input type="checkbox" value="{{ value }}"
41 {{#if checked}}checked="checked"{{/if}} />{{name}}
42 </li>
35 {{/provider}} 43 {{/provider}}
36 </ul> 44 </ul>
37 </div> 45 </div>
38 46
39 </form> 47 </form>
LEFTRIGHT

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