scinote-web/app/views/project_comments/_list.html.erb

15 lines
538 B
Plaintext
Raw Normal View History

2016-09-27 15:00:02 +08:00
<% day = 0 %>
<% current_day = days_since_1970(DateTime.current) %>
2016-02-12 23:52:43 +08:00
<% comments.each do |comment| %>
<% comment_day = days_since_1970(comment.created_at) %>
2016-10-03 22:10:20 +08:00
<% if comment_day <= current_day && comment_day > day %>
<% day = days_since_1970(comment.created_at) %>
2016-09-27 15:00:02 +08:00
<li class="comment-date-separator">
<p class="text-center"><%= comment.created_at.strftime('%d.%m.%Y') %></p>
</li>
<% end %>
<li class="comment">
<%= render 'project_comments/comment.html.erb', comment: comment %>
</li>
2016-02-12 23:52:43 +08:00
<% end %>