diff --git a/app/views/post_history/post.html.erb b/app/views/post_history/post.html.erb index 62471d4c5..c84487d55 100644 --- a/app/views/post_history/post.html.erb +++ b/app/views/post_history/post.html.erb @@ -4,10 +4,10 @@ <%= render 'posts/type_agnostic', post: @post, show_category_tag: true, show_type_tag: true, last_activity: false %> -<% @history.each do |event| %> +<% @history.each.with_index do |event,index| %>
- <%= event.post_history_type.name.humanize %> + #<%= @history.size - index %>: <%= event.post_history_type.name.humanize %> by @@ -35,4 +35,4 @@ <%= render 'diff', before: event.before_tags, after: event.after_tags, post: @post %> <% end %>
-<% end %> \ No newline at end of file +<% end %>