In my .erb file I have a simply .each loop
<%= @user.settings.each do |s| %>
..
<% end %>
What is the simplest way to check if it's currently going through it's first iteration? I know I could set i=0...i++ etc, but that is messy inside of an .erb file. Any suggestions?
Thanks