summaryrefslogtreecommitdiffstats
path: root/app/views/repositories/show.rhtml
blob: 04a58b4c91cfde071d70a531881eb4e47af05c6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<div class="contextual">
<%= link_to l(:label_statistics), {:action => 'stats', :id => @project}, :class => 'icon icon-stats' %>
</div>

<h2><%= l(:label_repository) %></h2>

<h3><%= l(:label_browse) %></h3>
<%= render :partial => 'dir_list' %>

<% unless @changesets.empty? %>
<h3><%= l(:label_latest_revision_plural) %></h3>
<%= render :partial => 'revisions', :locals => {:project => @project, :path => '', :changesets => @changesets, :entry => nil }%>
<p><%= link_to l(:label_view_revisions), :action => 'revisions', :id => @project %></p>
<% end %>

<% content_for :header_tags do %>
<%= stylesheet_link_tag "scm" %>
<% end %>