Guest User

Untitled

a guest
Jul 23rd, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <div id="calendar">
  2.  
  3. <p>
  4. <%= @calendar.year %>
  5. </p>
  6.  
  7. <table border>
  8. <tr>
  9. <td>
  10.  
  11. <% for month in @calendar.months %>
  12.  
  13. <p>
  14. <%= link_to month.name.first %>
  15.  
  16. <% for count in month.weeks_of_month %>
  17.  
  18. <p>
  19. <%= count.week.join(" ") %>
  20. </p>
  21.  
  22. <% end %>
  23. </p>
  24.  
  25. <% end %>
  26.  
  27. </td>
  28. </tr>
  29. </table>
  30. </div>
Add Comment
Please, Sign In to add comment