rename time helper to ago

This commit is contained in:
jomo
2014-11-15 21:02:30 +01:00
parent 110bc2a248
commit d2efe44de5
10 changed files with 14 additions and 14 deletions

View File

@@ -13,7 +13,7 @@
<%= link_to(thread.author.avatar(64), thread.author, title: thread.author.ign) %>
<%= render partial: "users/username", locals: { user: thread.author } %>
<%= link_to thread do %>
<%= time thread.created_at %>
<%= ago thread.created_at %>
<% end %>
<span class="comment-counter">
<%= link_to pluralize(thread.replies.count, "Reply"), thread %>
@@ -27,7 +27,7 @@
<% if rpl = thread.replies.last %>
<%= rpl.author.name %>
<%= link_to "replied", forumthread_path(thread) + "#reply-#{rpl.id}" %>
<%= time rpl.created_at %>.
<%= ago rpl.created_at %>.
<% else %>
No replies yet.
<% end %>