2016-09-27 15:00:02 +08:00
|
|
|
<% day = 0 %>
|
2017-01-12 22:06:12 +08:00
|
|
|
<% current_day = days_since_1970(DateTime.current) %>
|
2016-02-12 23:52:43 +08:00
|
|
|
<% comments.each do |comment| %>
|
2017-01-12 22:06:12 +08:00
|
|
|
<% comment_day = days_since_1970(comment.created_at) %>
|
2016-10-03 22:10:20 +08:00
|
|
|
<% if comment_day <= current_day && comment_day > day %>
|
2017-01-12 22:06:12 +08:00
|
|
|
<% day = days_since_1970(comment.created_at) %>
|
2016-09-27 15:00:02 +08:00
|
|
|
<li class="comment-date-separator">
|
2018-11-09 22:58:08 +08:00
|
|
|
<p class="text-center"><%= l(comment.created_at, format: :full_date) %></p>
|
2016-09-27 15:00:02 +08:00
|
|
|
</li>
|
|
|
|
<% end %>
|
2016-08-24 21:45:49 +08:00
|
|
|
<li class="comment">
|
|
|
|
<%= render 'project_comments/comment.html.erb', comment: comment %>
|
|
|
|
</li>
|
2016-02-12 23:52:43 +08:00
|
|
|
<% end %>
|