All Tasks <% @tasks.sort{|a, b| a[:name] <=> b[:name]}.each do |task| %> <% end %>
<%= link_to task[:name], new_project_stage_deployment_path(current_project, @stage) + "?task=#{task[:name]}", :class => 'arrow_link', :name => h(task[:name])%>    <%= simple_format task[:description] %>

<%= link_to 'Back to stage', project_stage_path(@project, @stage), :class => 'arrow_link' %> <% content_for(:breadcrumb) do %> <% breadcrumb_box do %> <%= link_to "Back to stage", project_stage_path(current_project, current_stage), :style => "float:right", :class => "arrow_link" %> <%= link_to "Projects", projects_path %> > Project <%= link_to current_project.name, project_path(current_project) %> > Stage <%= link_to current_stage.name, project_stage_path(current_project, current_stage) %> > Task list <% end %> <% end %> <% content_for(:page_title) do %> <% @page_title = "Task list for stage: #{h @stage.name}"%>

Task list

<% end %>