Realign the HTML for the orderby options.
This commit is contained in:
parent
79ed0ee186
commit
94140a5a88
1 changed files with 8 additions and 8 deletions
|
@ -148,15 +148,15 @@
|
||||||
{% macro create_orderby_li(selected_column, selected_sorter) %}
|
{% macro create_orderby_li(selected_column, selected_sorter) %}
|
||||||
<li class="search_builder_orderby_li">
|
<li class="search_builder_orderby_li">
|
||||||
<select>
|
<select>
|
||||||
<option value="created" {{"selected" if selected_column=="created" else ""}} >Creation date</option>
|
<option value="created" {{"selected" if selected_column=="created" else ""}} >Creation date</option>
|
||||||
<option value="area" {{"selected" if selected_column=="area" else ""}} >Area</option>
|
<option value="area" {{"selected" if selected_column=="area" else ""}} >Area</option>
|
||||||
<option value="width" {{"selected" if selected_column=="width" else ""}} >Width</option>
|
<option value="width" {{"selected" if selected_column=="width" else ""}} >Width</option>
|
||||||
<option value="height" {{"selected" if selected_column=="height" else ""}} >Height</option>
|
<option value="height" {{"selected" if selected_column=="height" else ""}} >Height</option>
|
||||||
<option value="ratio" {{"selected" if selected_column=="ratio" else ""}} >Aspect Ratio</option>
|
<option value="ratio" {{"selected" if selected_column=="ratio" else ""}} >Aspect Ratio</option>
|
||||||
<option value="bytes" {{"selected" if selected_column=="bytes" else ""}} >File size</option>
|
<option value="bytes" {{"selected" if selected_column=="bytes" else ""}} >File size</option>
|
||||||
<option value="duration" {{"selected" if selected_column=="duration" else ""}} >Duration</option>
|
<option value="duration" {{"selected" if selected_column=="duration" else ""}} >Duration</option>
|
||||||
<option value="tagged_at" {{"selected" if selected_column=="tagged_at" else ""}} >Recently tagged</option>
|
<option value="tagged_at" {{"selected" if selected_column=="tagged_at" else ""}} >Recently tagged</option>
|
||||||
<option value="random" {{"selected" if selected_column=="random" else ""}} >Random</option>
|
<option value="random" {{"selected" if selected_column=="random" else ""}} >Random</option>
|
||||||
</select>
|
</select>
|
||||||
<select>
|
<select>
|
||||||
<option value="desc" {{"selected" if selected_sorter=="desc" else ""}} >Descending</option>
|
<option value="desc" {{"selected" if selected_sorter=="desc" else ""}} >Descending</option>
|
||||||
|
|
Loading…
Reference in a new issue