%= render :partial => "common/scrum_menu" %>
<%= l(:label_no_data) %>
<%- else -%><%= l(:label_member) %> | <%- @days.each do |day| -%> | <%= day[:label] %> | <%- end -%><%= l(:label_total) %> |
---|---|---|---|
<%= link_to_user(member[:member]) %> | <%= l(:label_estimated_effort) %> | <%- @days.each do |day| -%><%- day_info = member[:estimated_efforts][:days][day[:date]] -%> <%- if day_info -%> <%= "#{day_info.round(2)} h" %> <%- end -%> | <%- end -%><%= member[:estimated_efforts][:total].round(2) %> h |
<%= l(:label_done_effort) %> | <%- @days.each do |day| -%><%- day_info = member[:done_efforts][:days][day[:date]] -%> <%- if day_info -%> <%= "#{day_info.round(2)} h" %> <%- end -%> | <%- end -%><%= member[:done_efforts][:total].round(2) %> h | |
<%= l(:label_total) %> | <%= l(:label_estimated_effort) %> | <%- @days.each do |day| -%><%- day_info = @estimated_efforts_totals[:days][day[:date]] -%> <%- if day_info -%> <%= "#{day_info.round(2)} h" %> <%- end -%> | <%- end -%><%= @estimated_efforts_totals[:total].round(2) %> h |
<%= l(:label_done_effort) %> | <%- @days.each do |day| -%><%- day_info = @done_efforts_totals[:days][day[:date]] -%> <%- if day_info -%> <%= "#{day_info.round(2)} h" %> <%- end -%> | <%- end -%><%= @done_efforts_totals[:total].round(2) %> h |
<%= l(:label_no_data) %>
<%- else -%> <%= render :partial => "sprints/stat_graph_and_table", :locals => {:graph => {:id => "stats_sps_per_category", :width => 400, :height => 400}, :element => {:label => l(:label_issue_category_plural), :name => :category}, :unit => {:label => l(:label_story_point_unit), :plural_label => l(:label_story_point_plural)}, :rows => @sps_by_pbi_category, :total => @sps_by_pbi_category_total} %> <%- end -%><%= l(:label_no_data) %>
<%- else -%> <%= render :partial => "sprints/stat_graph_and_table", :locals => {:graph => {:id => "stats_sps_per_pbi_type", :width => 400, :height => 400}, :element => {:label => l(:label_tracker_plural), :name => :tracker}, :unit => {:label => l(:label_story_point_unit), :plural_label => l(:label_story_point_plural)}, :rows => @sps_by_pbi_type, :total => @sps_by_pbi_type_total} %> <%- end -%><%= l(:label_no_data) %>
<%- else -%> <%= render :partial => "sprints/stat_graph_and_table", :locals => {:graph => {:id => "stats_sps_by_creation_date", :width => 400, :height => 400}, :element => {:label => l(:label_tracker_plural), :name => :created_on}, :unit => {:label => l(:label_story_point_unit), :plural_label => l(:label_story_point_plural)}, :rows => @sps_by_pbi_creation_date, :total => @sps_by_pbi_creation_date_total} %> <%- end -%><%= l(:label_no_data) %>
<%- else -%> <%= render :partial => "sprints/stat_graph_and_table", :locals => {:graph => {:id => "stats_time_per_activity", :width => 400, :height => 400}, :element => {:label => l(:enumeration_activities), :name => :activity}, :unit => {:label => "h", :plural_label => l(:label_time_entry_plural)}, :rows => @effort_by_activity, :total => @effort_by_activity_total} %> <%- end -%> <%= render :partial => "common/scrum_footer" %>