2011-12-28 08:38:50 +01:00
|
|
|
= render "project_head"
|
2011-12-30 20:56:34 +01:00
|
|
|
- unless @notes.empty?
|
2012-09-03 20:53:16 +02:00
|
|
|
%table
|
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th File name
|
2012-10-22 22:37:50 +02:00
|
|
|
%th
|
2012-09-03 20:53:16 +02:00
|
|
|
|
2012-02-18 14:59:01 +01:00
|
|
|
- @notes.each do |note|
|
|
|
|
%tr
|
|
|
|
%td
|
2013-02-17 15:18:42 +01:00
|
|
|
= link_to note.attachment.secure_url, target: "_blank" do
|
2012-10-22 22:37:50 +02:00
|
|
|
= image_tag gravatar_icon(note.author_email), class: "avatar s24"
|
2011-12-30 20:56:34 +01:00
|
|
|
= note.attachment_identifier
|
2012-06-04 00:37:27 +02:00
|
|
|
%td
|
2012-02-18 14:59:01 +01:00
|
|
|
Added
|
|
|
|
= time_ago_in_words(note.created_at)
|
|
|
|
ago
|
2012-06-04 00:37:27 +02:00
|
|
|
- else
|
2012-12-14 06:14:05 +01:00
|
|
|
%p.slead All files attached to project wall, issues etc will be displayed here
|
2011-12-28 08:38:50 +01:00
|
|
|
|
|
|
|
|