mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-24 19:20:13 +01:00
17 lines
782 B
Text
17 lines
782 B
Text
<%= render :partial => 'time_to_complete', :locals => {:ttc => actions.ttc} -%>
|
|
|
|
<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>
|
|
|
|
<% actions.completion_charts.each do |chart| %><%=
|
|
render :partial => 'chart', :locals => {:chart => chart}
|
|
-%><% end %>
|
|
|
|
<br style="clear:both">
|
|
|
|
<% actions.timing_charts.each do |chart| %><%=
|
|
render :partial => 'chart', :locals => {:chart => chart}
|
|
-%><% end %>
|
|
|