2008-06-09 22:40:59 +04:00
|
|
|
<h2><%=h @attachment.filename %></h2>
|
|
|
|
|
|
|
|
<div class="attachments">
|
|
|
|
<p><%= h("#{@attachment.description} - ") unless @attachment.description.blank? %>
|
2011-08-02 16:57:38 +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-09 22:40:59 +04:00
|
|
|
<span class="size">(<%= number_to_human_size @attachment.filesize %>)</span></p>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<%= render :partial => 'common/file', :locals => {:content => @content, :filename => @attachment.filename} %>
|
|
|
|
|
2011-10-02 22:45:17 +04:00
|
|
|
<% html_title @attachment.filename %>
|
2009-04-25 13:35:14 +04:00
|
|
|
|
2008-06-09 22:40:59 +04:00
|
|
|
<% content_for :header_tags do -%>
|
|
|
|
<%= stylesheet_link_tag "scm" -%>
|
|
|
|
<% end -%>
|