2009-09-20 18:06:57 +04:00
|
|
|
<h2><%= l(:label_statistics) %></h2>
|
|
|
|
|
|
|
|
<p>
|
2013-04-18 06:07:44 +04:00
|
|
|
<%= tag("embed", :width => 800, :height => params[:height_commits_per_month],
|
|
|
|
:type => "image/svg+xml", :src => url_for(:controller => 'repositories',
|
|
|
|
:action => 'graph', :id => @project,
|
|
|
|
:repository_id => @repository.identifier_param,
|
|
|
|
:graph => "commits_per_month")) %>
|
2009-09-20 18:06:57 +04:00
|
|
|
</p>
|
|
|
|
<p>
|
2013-04-18 06:07:44 +04:00
|
|
|
<%= tag("embed", :width => 800, :height => params[:height_commits_per_author],
|
|
|
|
:type => "image/svg+xml", :src => url_for(:controller => 'repositories',
|
|
|
|
:action => 'graph', :id => @project,
|
|
|
|
:repository_id => @repository.identifier_param,
|
|
|
|
:graph => "commits_per_author")) %>
|
2009-09-20 18:06:57 +04:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<p><%= link_to l(:button_back), :action => 'show', :id => @project %></p>
|
|
|
|
|
|
|
|
<% html_title(l(:label_repository), l(:label_statistics)) -%>
|