Listing habits

<% @habits.each do |habit| %> <% end %>
Name Notes Daily Value
<%= habit.name %> <%= habit.notes %> <%= habit.daily %> <%= habit.value %> <%= link_to 'Show', habit %> <%= link_to 'Edit', edit_habit_path(habit) %> <%= link_to 'Destroy', habit, confirm: 'Are you sure?', method: :delete %>

<%= link_to 'New Habit', new_habit_path %>