Guest User

Untitled

a guest
Dec 16th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. <%= form_tag "", method: :get do %>
  2. <p><%= label_tag :start_date %><%= text_field_tag :start, @start.strftime("%Y-%m-%d") %></p>
  3. <p><%= label_tag :end_date %><%= text_field_tag :end, @end.strftime("%Y-%m-%d") %></p>
  4. <p><%= submit_tag :View, name: nil %></p>
  5. <% end %>
  6.  
  7. <table>
  8. <thead>
  9. <tr>
  10. <th>Date</th>
  11. <th>Visitors</th>
  12. <th>Customers</th>
  13. </tr>
  14. </thead>
  15. <tbody>
  16. <% @end.downto(@start) do |date| %>
  17. <% customer_count = @customers.find { |c| c.date_created_at == date.strftime("%Y-%m-%d") } %>
  18. <% visitor_count = @visitors.find { |v| v.date_created_at == date.strftime("%Y-%m-%d") } %>
  19. <tr>
  20. <td><%= date %></td>
  21. <td><%= visitor_count.present? ? visitor_count.count_all : 0 %></td>
  22. <td><%= customer_count.present? ? customer_count.count_all : 0 %></td>
  23. </tr>
  24. <% end %>
  25. </tbody>
  26. </table>
Add Comment
Please, Sign In to add comment