public
Description: Gitorious aims to provide a great way of doing distributed opensource code collaboration.
Homepage: http://gitorious.org/projects/gitorious
Clone URL: git://github.com/dysinger/gitorious.git
commit  311210962d6f212d17f1149da843d0afab0c6d74
tree    e5db329019840918a1bbf8f80b6255b1b645d8f0
parent  ceafcfd952a8eda7ac13b50743c03690110f44b5
gitorious / app / views / comments / commit.html.erb
100644 20 lines (14 sloc) 0.683 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<% @page_title = "Comments in #{@repository.name}" -%>
<h1>Comments on commit <%= h(@commit.id[0,7]) -%> in <%= h(@repository.name) -%></h1>
 
<%= render :partial => "commits/commit_infobox" -%>
<div class="commit_message"><%= simple_format(h(@commit.message)) -%></div>
 
<ul class="tab_menu">
  <li><%= link_to "Commit diff",
      project_repository_commit_path(@project, @repository, @commit.id) -%></li>
  <li class="selected">Comments (<%= @comments.size -%>)</li>
</ul>
 
<%= render :partial => @comments -%>
 
<%= render :partial => "form", :locals => {:sha1 => @commit.id} -%>
 
<% content_for :submenu do -%>
  <%= render :partial => "repositories/context_menu" -%>
<% end -%>