tracks/app/views/stats/index.html.erb
Reinier Balt 44f8646881 adds chart to see all actions in all past months
This one is a bit hidden. You need to click on a bar in the chart
with the actions from the last 12 months. Need to change this so
people can find it easier
2008-07-04 17:56:59 +02:00

30 lines
No EOL
515 B
Text
Executable file

<div class="stats_content">
<h2>Totals</h2>
<%= render :partial => 'totals' -%>
<% unless @actions.empty? -%>
<h2>Actions</h2>
<%= render :partial => 'actions' -%>
<h2>Contexts</h2>
<%= render :partial => 'contexts' -%>
<h2>Projects</h2>
<%= render :partial => 'projects' -%>
<h2>Tags</h2>
<%= render :partial => 'tags' -%>
<% else -%>
<p>More statistics will appear here once you have added some actions.</p>
<% end -%>
</div>