To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / app / views / repositories / stats.rhtml @ 906:154205fd9f8b
History | View | Annotate | Download (581 Bytes)
| 1 |
<h2><%= l(:label_statistics) %></h2> |
|---|---|
| 2 |
|
| 3 |
<p>
|
| 4 |
<%= tag("embed", :width => 800, :height => 300, :type => "image/svg+xml", :src => url_for(:controller => 'repositories', :action => 'graph', :id => @project, :graph => "commits_per_month")) %>
|
| 5 |
</p>
|
| 6 |
<p>
|
| 7 |
<%= tag("embed", :width => 800, :height => 400, :type => "image/svg+xml", :src => url_for(:controller => 'repositories', :action => 'graph', :id => @project, :graph => "commits_per_author")) %>
|
| 8 |
</p>
|
| 9 |
|
| 10 |
<p><%= link_to l(:button_back), :action => 'show', :id => @project %></p> |
| 11 |
|
| 12 |
<% html_title(l(:label_repository), l(:label_statistics)) -%>
|