8 lines
279 B
Plaintext
8 lines
279 B
Plaintext
<section class="submenu">
|
|
<% valid_orders.each do |order| %>
|
|
<%= link_to t("#{i18n_namespace}.orders.#{order}"),
|
|
current_path_with_query_params(order: order, page: 1),
|
|
class: order == @current_order ? 'active' : '' %>
|
|
<% end %>
|
|
</section>
|