2011-12-28 09:38:50 +02:00
|
|
|
= render "project_head"
|
2011-12-30 21:56:34 +02:00
|
|
|
- unless @notes.empty?
|
2012-09-03 21:53:16 +03:00
|
|
|
%table
|
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th File name
|
|
|
|
%th
|
|
|
|
|
2012-02-18 15:59:01 +02:00
|
|
|
- @notes.each do |note|
|
|
|
|
%tr
|
|
|
|
%td
|
2012-08-10 18:07:50 -04:00
|
|
|
%a{href: note.attachment.url}
|
|
|
|
= image_tag gravatar_icon(note.author_email), class: "left", width: 16
|
2012-02-18 15:59:01 +02:00
|
|
|
|
2011-12-30 21:56:34 +02:00
|
|
|
= note.attachment_identifier
|
2012-06-04 01:37:27 +03:00
|
|
|
%td
|
2012-02-18 15:59:01 +02:00
|
|
|
Added
|
|
|
|
= time_ago_in_words(note.created_at)
|
|
|
|
ago
|
2012-06-04 01:37:27 +03:00
|
|
|
- else
|
2012-03-06 00:29:40 +02:00
|
|
|
.alert-message.block-message
|
2012-07-26 14:45:17 +03:00
|
|
|
%span All files attached to project wall, issues etc will be displayed here
|
2011-12-28 09:38:50 +02:00
|
|
|
|
|
|
|
|