2013-03-02 12:09:25 -05:00
|
|
|
<%= render :partial => 'time_to_complete', :locals => {:ttc => actions.ttc} -%>
|
2007-09-13 03:21:37 +00:00
|
|
|
|
2013-03-02 10:48:08 -05:00
|
|
|
<p><%= t('stats.actions_actions_avg_created_30days', :count => (actions.created_last30days*10.0/30.0).round/10.0 )%>
|
|
|
|
|
<%= t('stats.actions_avg_completed_30days', :count => (actions.done_last30days*10.0/30.0).round/10.0 )%>
|
|
|
|
|
<%= t('stats.actions_avg_created', :count => (actions.created_last12months*10.0/12.0).round/10.0 )%>
|
|
|
|
|
<%= t('stats.actions_avg_completed', :count => (actions.done_last12months*10.0/12.0).round/10.0 )%></p>
|
2007-09-13 03:21:37 +00:00
|
|
|
|
2013-03-02 10:48:08 -05:00
|
|
|
<% actions.completion_charts.each do |chart| %><%=
|
2013-03-01 20:38:24 -05:00
|
|
|
render :partial => 'chart', :locals => {:chart => chart}
|
|
|
|
|
-%><% end %>
|
2007-09-13 03:21:37 +00:00
|
|
|
|
2007-09-14 05:44:01 +00:00
|
|
|
<br style="clear:both">
|
2007-09-13 03:21:37 +00:00
|
|
|
|
2013-03-02 10:48:08 -05:00
|
|
|
<% actions.timing_charts.each do |chart| %><%=
|
2013-03-01 20:38:24 -05:00
|
|
|
render :partial => 'chart', :locals => {:chart => chart}
|
|
|
|
|
-%><% end %>
|
|
|
|
|
|