<%if @attachments == []%>
<%= t('attachment.other') %>: <%= t('attachment.found.none') %>
<%else%>
<%if @attachments.size == 1%>
<%= t('attachment.other') %>: <%= t('attachment.found.one') %>
<%else%>
<%= t('attachment.other') %>: <%= t('attachment.found.other', :size => @attachments.size) %>
<%end%>
<%= render :partial => 'attachments/doc_table', :locals => {:interactive => false} %>
<%end%>