2013-03-15 13:20:03 +01:00
|
|
|
= render 'wikis/nav'
|
|
|
|
- unless @notes.empty?
|
|
|
|
%table
|
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th File name
|
|
|
|
%th
|
2012-09-03 20:53:16 +02:00
|
|
|
|
2013-03-15 13:20:03 +01:00
|
|
|
- @notes.each do |note|
|
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
= link_to note.attachment.secure_url, target: "_blank" do
|
|
|
|
= image_tag gravatar_icon(note.author_email), class: "avatar s24"
|
|
|
|
= note.attachment_identifier
|
|
|
|
%td
|
|
|
|
Added
|
|
|
|
= time_ago_in_words(note.created_at)
|
|
|
|
ago
|
|
|
|
- else
|
|
|
|
%p.slead All files attached to project wall, issues etc will be displayed here
|
2011-12-28 08:38:50 +01:00
|
|
|
|
|
|
|
|