<% form_tag do %>

<%= l(:label_revision) %>: <%= text_field_tag 'rev', @rev, :size => 5 %> <%= submit_tag 'OK' %>

<% end %>

<%= l(:label_revision) %> <%= @changeset.revision %>

<%= @changeset.committer %>, <%= format_time(@changeset.committed_on) %>

<%= textilizable @changeset.comments %> <% if @changeset.issues.any? %>

<%= l(:label_related_issues) %>

<% end %>

<%= l(:label_attachment_plural) %>

<%= l(:label_added) %> 
<%= l(:label_modified) %> 
<%= l(:label_deleted) %> 

<%= link_to(l(:label_view_diff), :action => 'diff', :id => @project, :path => "", :rev => @changeset.revision) if @changeset.changes.any? %>

<% @changeset.changes.each do |change| %> <% end %>
<%= change.path %>
<% if change.action == "M" %> <%= link_to l(:label_view_diff), :action => 'diff', :id => @project, :path => change.path, :rev => @changeset.revision %> <% end %>

<%= lwr(:label_modification, @changeset.changes.length) %>

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