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