OLD | NEW |
(Empty) | |
| 1 <div class="list"> |
| 2 <div style="float:right; margin-left:2em; font-size:95%"> |
| 3 <a class="buttonify capsule_left" href="list?can=[can]&q=[query]&colspe
c=[format "url"][colspec][end]&groupby=[format "url"][groupby][end]&sort
=[format "url"][sortspec][end]&x=[grid_x_attr]&y=[grid_y_attr]&cells
=[grid_cell_mode]">List</a><span |
| 4 class="buttonify capsule_right mode_button_active">Grid</span> |
| 5 </div> |
| 6 |
| 7 [if-any grid_data] |
| 8 <div class="pagination"> |
| 9 [is pagination.total_count "1"] |
| 10 [pagination.total_count] issue shown |
| 11 [else] |
| 12 [if-any grid_limited][grid_shown] issues of [end] |
| 13 [pagination.total_count] issues shown |
| 14 [end] |
| 15 </div> |
| 16 [end] |
| 17 |
| 18 <form id="colspecform" action="list" method="GET" style="display:inline"> |
| 19 <input type="hidden" name="can" value="[can]"> |
| 20 <input type="hidden" name="q" value="[query]"> |
| 21 <input type="hidden" name="colspec" id="colspec" value="[colspec]"> |
| 22 <input type="hidden" name="sort" value="[sortspec]"> |
| 23 <input type="hidden" name="groupby" value="[groupby]"> |
| 24 <input type="hidden" name="mode" value="grid"> |
| 25 <span>Rows:</span> |
| 26 <select name="y" class="drop-down-bub"> |
| 27 <option value="--" [if-any grid_y_attr][else]selected=selected[end]>None</optio
n> |
| 28 [for grid_axis_choices] |
| 29 <option value="[grid_axis_choices]" |
| 30 [is grid_axis_choices grid_y_attr]selected=selected[end] |
| 31 >[grid_axis_choices]</option> |
| 32 [end] |
| 33 </select> |
| 34 |
| 35 <span style="margin-left:.7em">Cols:</span> |
| 36 <select name="x" class="drop-down-bub"> |
| 37 <option value="--" [if-any grid_x_attr][else]selected=selected[end]>None</optio
n> |
| 38 [for grid_axis_choices] |
| 39 <option value="[grid_axis_choices]" |
| 40 [is grid_axis_choices grid_x_attr]selected=selected[end] |
| 41 >[grid_axis_choices]</option> |
| 42 [end] |
| 43 </select> |
| 44 |
| 45 <span style="margin-left:.7em">Cells:</span> |
| 46 <select name="cells" class="drop-down-bub"> |
| 47 <option value="tiles" [is grid_cell_mode "tiles"]selected=selected[end]>Tiles</
option> |
| 48 <option value="ids" [is grid_cell_mode "ids"]selected=selected[end]>IDs</option
> |
| 49 <option value="counts" [is grid_cell_mode "counts"]selected=selected[end]>Count
s</option> |
| 50 </select> |
| 51 |
| 52 <input type="submit" name="nobtn" style="font-size:90%; margin-left:.5em" value=
"Update"> |
| 53 |
| 54 </form> |
| 55 </div> |
OLD | NEW |