2007-09-13 03:21:37 +00:00
|
|
|
<p>You have <%= @projects.count%> projects.
|
2007-10-05 19:20:18 +00:00
|
|
|
Of those <%= @projects.count(:conditions => "state = 'active'")%> are active projects,
|
|
|
|
|
<%= @projects.count(:conditions => "state = 'hidden'")%> hidden projects and
|
2007-09-13 03:21:37 +00:00
|
|
|
<%= @projects.count(:conditions => "state = 'completed'")%> completed projects</p>
|
|
|
|
|
|
|
|
|
|
<p>You have <%= @contexts.count%> contexts.
|
2007-09-13 03:28:59 +00:00
|
|
|
Of those <%= @contexts.count(:conditions => ["hide = ?", false])%> are visible contexts and
|
|
|
|
|
<%= @contexts.count(:conditions => ["hide = ?", true]) %> are hidden contexts
|
2007-09-13 03:21:37 +00:00
|
|
|
|
2007-11-06 04:37:04 +00:00
|
|
|
<% unless @actions.empty? -%>
|
2008-03-13 08:00:04 +00:00
|
|
|
<p>You have <%= @actions.count(:conditions => "completed_at IS NULL") %> incomplete actions of which
|
2007-10-05 19:20:18 +00:00
|
|
|
<%= @actions.count(:conditions => "completed_at IS NULL AND NOT show_from IS NULL") %> are
|
|
|
|
|
deferred actions. </p>
|
2007-11-04 23:23:35 +00:00
|
|
|
|
2007-10-05 19:20:18 +00:00
|
|
|
<p>Since your first action on <%= format_date(@first_action.created_at) %> you have
|
|
|
|
|
a total of <%= @actions.count %> actions.
|
|
|
|
|
<%= @actions.count(:conditions => "NOT completed_at IS NULL") %> of these are completed.
|
2007-11-04 23:23:35 +00:00
|
|
|
|
2009-01-08 10:18:03 +01:00
|
|
|
<p>You have <%= @tags_count-%> tags placed on actions. Of those tags,
|
|
|
|
|
<%= @unique_tags_count -%> are unique.
|
2007-11-04 23:23:35 +00:00
|
|
|
<% end -%>
|
|
|
|
|
|