view app/views/repositories/stats.html.erb @ 1464:261b3d9a4903 redmine-2.4

Update to Redmine 2.4 branch rev 12663
author Chris Cannam
date Tue, 14 Jan 2014 14:37:42 +0000
parents 433d4f72a19b
children
line wrap: on
line source
<h2><%= l(:label_statistics) %></h2>

<p>
<%= tag("embed",
        :type => "image/svg+xml", :src => url_for(:controller => 'repositories',
        :action => 'graph', :id => @project,
        :repository_id => @repository.identifier_param,
        :graph => "commits_per_month")) %>
</p>
<p>
<%= tag("embed",
        :type => "image/svg+xml", :src => url_for(:controller => 'repositories',
        :action => 'graph', :id => @project,
        :repository_id => @repository.identifier_param,
        :graph => "commits_per_author")) %>
</p>

<p><%= link_to l(:button_back), :action => 'show', :id => @project %></p>

<% html_title(l(:label_repository), l(:label_statistics)) -%>