<%= link_to h(recipe.name), recipe_path(recipe) %> |
<%=h recipe.description %> |
<%=h recipe.stages.count %> |
<%=h recipe.created_at.to_s(:date_with_day) rescue nil %> |
<% if current_user.admin? %>
<%= link_to 'Edit', edit_recipe_path(recipe) %> |
<%= link_to 'Delete', recipe_path(recipe), :confirm => 'Are you sure?', :method => :delete %> |
<% end %>
<% end %>