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

Side by Side Diff: app/templates/charm-search-result.handlebars

Issue 6842119: Add the required charm filter dropdown.
Patch Set: Add the required charm filter dropdown. Created 11 years, 3 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/store/charm.js ('k') | app/templates/overview.handlebars » ('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 class="picker charm-filter-picker">
2 <i class="picker-edge sprite picker_left_edge"></i>
3 <div class="picker-expanded">
4 <div class="picker-list">
5 <ul>
6 <li class="picker-item all" data-filter="all">
7 All charms ({{allCharmsCount}})</li>
8 <li class="picker-item subordinates" data-filter="subordinates">
9 Subordinates ({{subordinateCharmsCount}})</li>
10 <li class="picker-item deployed" data-filter="deployed">
11 Deployed ({{deployedCharmsCount}})</li>
12 </ul>
13 </div>
14 <i class="picker-edge picker-edge-right sprite view_right_edge"></i>
15 </div>
16 <div class="picker-body"></div>
17 <i class="picker-button sprite picker_view_right_button_down"></i>
18 </div>
19
1 <div class="search-result-div"> 20 <div class="search-result-div">
21
2 <div> 22 <div>
3 {{#charms}} 23 {{#charms}}
4 <div class="series-charms"> 24 <div class="series-charms">
5 <h3>{{series}}</h3> 25 <h3>{{series}}</h3>
6 <ul class="unstyled"> 26 <ul class="unstyled">
7 {{#charms}} 27 {{#charms}}
8 <li class="charm-entry"> 28 <li class="charm-entry">
9 <div class="charm-div"> 29 <div class="charm-div">
10 <button class="btn btn-primary deploy" 30 <button class="btn btn-primary deploy"
11 data-url="{{id}}">Deploy</button> 31 data-url="{{id}}">Deploy</button>
12 {{! It is is important that the following 'href' line not be 32 {{! It is is important that the following 'href' line not be
13 broken, or the string processed by the ellipsis module will 33 broken, or the string processed by the ellipsis module will
14 include a lot of whitespace. }} 34 include a lot of whitespace. }}
15 <a class="charm-detail" 35 <a class="charm-detail"
16 href="{{id}}">{{#if owner}}{{owner}}/{{/if}}{{package_name}}</a> 36 href="{{id}}">{{#if owner}}{{owner}}/{{/if}}{{package_name}}</a>
17 <div class="charm-summary">{{summary}}</div> 37 <div class="charm-summary">{{summary}}</div>
18 </div> 38 </div>
19 </li> 39 </li>
20 {{/charms}} 40 {{/charms}}
21 </ul> 41 </ul>
22 </div> 42 </div>
23 {{/charms}} 43 {{/charms}}
24 </div> 44 </div>
25 </div> 45 </div>
OLDNEW
« no previous file with comments | « app/store/charm.js ('k') | app/templates/overview.handlebars » ('j') | no next file with comments »

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