summaryrefslogtreecommitdiffstats
path: root/app/views/repositories/show.rhtml
blob: 9c2adc9293109f58e87f78d2dd8793ae04b98e69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<h2><%= l(:label_repository) %></h2>

<h3><%= l(:label_revision_plural) %></h3>
<% if @latest_revision %>
    <p><%= l(:label_latest_revision) %>:
    <%= link_to @latest_revision.identifier, :action => 'revision', :id => @project, :rev => @latest_revision.identifier %><br />
    <em><%= @latest_revision.author %>, <%= format_time(@latest_revision.time) %></em></p>
<% end %>
<p><%= link_to l(:label_view_revisions), :action => 'revisions', :id => @project %></p>


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

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