2008-06-08 18:26:39 +00:00
|
|
|
<h2><%=h @attachment.filename %></h2>
|
|
|
|
|
|
|
|
<div class="attachments">
|
|
|
|
<p><%= h("#{@attachment.description} - ") unless @attachment.description.blank? %>
|
2011-08-02 12:56:45 +00:00
|
|
|
<span class="author"><%= link_to_user(@attachment.author) %>, <%= format_time(@attachment.created_on) %></span></p>
|
2008-07-22 17:55:19 +00:00
|
|
|
<p><%= link_to_attachment @attachment, :text => l(:button_download), :download => true -%>
|
2008-06-08 18:26:39 +00:00
|
|
|
<span class="size">(<%= number_to_human_size @attachment.filesize %>)</span></p>
|
|
|
|
</div>
|
2012-04-25 17:17:49 +00:00
|
|
|
<%= form_tag({}, :method => 'get') do %>
|
2012-09-18 23:48:52 +00:00
|
|
|
<p>
|
|
|
|
<%= l(:label_view_diff) %>:
|
|
|
|
<label><%= radio_button_tag 'type', 'inline', @diff_type != 'sbs', :onchange => "this.form.submit()" %> <%= l(:label_diff_inline) %></label>
|
|
|
|
<label><%= radio_button_tag 'type', 'sbs', @diff_type == 'sbs', :onchange => "this.form.submit()" %> <%= l(:label_diff_side_by_side) %></label>
|
|
|
|
</p>
|
2011-11-20 06:13:26 +00:00
|
|
|
<% end %>
|
2012-09-18 19:32:58 +00:00
|
|
|
<%= render :partial => 'common/diff', :locals => {:diff => @diff, :diff_type => @diff_type, :diff_style => nil} %>
|
2008-06-08 18:26:39 +00:00
|
|
|
|
2011-10-02 18:45:17 +00:00
|
|
|
<% html_title @attachment.filename %>
|
2009-04-25 09:35:14 +00:00
|
|
|
|
2008-06-08 18:26:39 +00:00
|
|
|
<% content_for :header_tags do -%>
|
|
|
|
<%= stylesheet_link_tag "scm" -%>
|
|
|
|
<% end -%>
|