stats.html.erb
20 lines
| 802 B
| text/plain
|
TextLexer
|
r2781 | <h2><%= l(:label_statistics) %></h2> | ||
<p> | ||||
|
r11493 | <%= 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")) %> | ||||
|
r2781 | </p> | ||
<p> | ||||
|
r11493 | <%= 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")) %> | ||||
|
r2781 | </p> | ||
<p><%= link_to l(:button_back), :action => 'show', :id => @project %></p> | ||||
<% html_title(l(:label_repository), l(:label_statistics)) -%> | ||||