annotate app/views/attachments/diff.html.erb @ 1524:82fac3dcf466
redmine-2.5-integration
Fix failure to interpret Javascript when autocompleting members for project
author |
Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
date |
Thu, 11 Sep 2014 10:24:38 +0100 |
parents |
433d4f72a19b |
children |
|
rev |
line source |
Chris@0
|
1 <h2><%=h @attachment.filename %></h2>
|
Chris@0
|
2
|
Chris@0
|
3 <div class="attachments">
|
Chris@0
|
4 <p><%= h("#{@attachment.description} - ") unless @attachment.description.blank? %>
|
Chris@909
|
5 <span class="author"><%= link_to_user(@attachment.author) %>, <%= format_time(@attachment.created_on) %></span></p>
|
Chris@0
|
6 <p><%= link_to_attachment @attachment, :text => l(:button_download), :download => true -%>
|
Chris@0
|
7 <span class="size">(<%= number_to_human_size @attachment.filesize %>)</span></p>
|
Chris@0
|
8 </div>
|
Chris@1115
|
9 <%= form_tag({}, :method => 'get') do %>
|
Chris@1115
|
10 <p>
|
Chris@1115
|
11 <%= l(:label_view_diff) %>:
|
Chris@1115
|
12 <label><%= radio_button_tag 'type', 'inline', @diff_type != 'sbs', :onchange => "this.form.submit()" %> <%= l(:label_diff_inline) %></label>
|
Chris@1115
|
13 <label><%= radio_button_tag 'type', 'sbs', @diff_type == 'sbs', :onchange => "this.form.submit()" %> <%= l(:label_diff_side_by_side) %></label>
|
Chris@1115
|
14 </p>
|
Chris@909
|
15 <% end %>
|
Chris@1115
|
16 <%= render :partial => 'common/diff', :locals => {:diff => @diff, :diff_type => @diff_type, :diff_style => nil} %>
|
Chris@0
|
17
|
Chris@0
|
18 <% html_title @attachment.filename %>
|
Chris@0
|
19
|
Chris@0
|
20 <% content_for :header_tags do -%>
|
Chris@0
|
21 <%= stylesheet_link_tag "scm" -%>
|
Chris@0
|
22 <% end -%>
|