tracks/app/views/stats/_totals.html.erb
Katrina Owen 615a9e46c9 Encapsulate counts and totals into a class.
Move queries out of the view and into the model layer.
2013-03-02 17:22:15 -07:00

23 lines
1.2 KiB
Text
Executable file

<p><%= t('stats.totals_project_count', :count => totals.projects) %>
<%= t('stats.totals_active_project_count', :count => totals.active_projects) %>,
<%= t('stats.totals_hidden_project_count', :count => totals.hidden_projects) %>
<%= t('stats.totals_completed_project_count', :count => totals.completed_projects) %></p>
<p><%= t('stats.totals_context_count', :count => totals.contexts) %>
<%= t('stats.totals_visible_context_count', :count => totals.visible_contexts) %>
<%= t('stats.totals_hidden_context_count', :count => totals.hidden_contexts) %>
<% unless totals.empty? -%>
<p><%= t('stats.totals_first_action', :date => format_date(totals.first_action_at)) %>
<%= t('stats.totals_action_count', :count => totals.all_actions) %>,
<%= t('stats.totals_actions_completed', :count => totals.completed_actions) %>
<p><%= t('stats.totals_incomplete_actions', :count => totals.incomplete_actions) %>
<%= t('stats.totals_deferred_actions', :count => totals.deferred_actions) %>
<%= t('stats.totals_blocked_actions', :count => totals.blocked_actions) %>
</p>
<p><%= t('stats.totals_tag_count', :count => totals.tags) %>
<%= t('stats.totals_unique_tags', :count => totals.unique_tags) %>
<% end -%>