Skip to content

Instantly share code, notes, and snippets.

@clemens
Created November 25, 2020 15:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save clemens/62c324f1b60adc5ce10094b56c1c58d9 to your computer and use it in GitHub Desktop.
Save clemens/62c324f1b60adc5ce10094b56c1c58d9 to your computer and use it in GitHub Desktop.
<ul>
<% @users.each do |user| %>
<li>
<%= user.name %>
<% if (orders = user.orders_in_timespan(@start_date, @end_date)).any? %>
<ul>
<% orders.each do |order| %>
<li><%= order.number %></li>
<% end %>
</ul>
<% end %>
</li>
<% end %>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment