mirror of
https://github.com/hkalexling/Mango.git
synced 2026-03-20 00:00:48 -04:00
15 lines
501 B
Plaintext
15 lines
501 B
Plaintext
<div class="uk-form-horizontal">
|
|
<select class="uk-select" id="sort-select">
|
|
<% hash.each do |k, v| %>
|
|
<option id="<%= k %>-up"
|
|
<% if sort_opt && k == sort_opt.method.to_s.underscore && sort_opt.ascend %>
|
|
<%= "selected" %>
|
|
<% end %>>▲ <%= v %></option>
|
|
<option id="<%= k %>-down"
|
|
<% if sort_opt && k == sort_opt.method.to_s.underscore && !sort_opt.ascend %>
|
|
<%= "selected" %>
|
|
<% end %>>▼ <%= v %></option>
|
|
<% end %>
|
|
</select>
|
|
</div>
|