Created
November 25, 2020 15:41
-
-
Save clemens/62c324f1b60adc5ce10094b56c1c58d9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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