2011-12-28 02:38:50 -05:00
|
|
|
= render "project_head"
|
2011-12-30 14:56:34 -05:00
|
|
|
- unless @notes.empty?
|
2012-02-18 08:59:01 -05:00
|
|
|
%table.zebra-striped.borders
|
|
|
|
- @notes.each do |note|
|
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
%a{:href => note.attachment.url}
|
|
|
|
= image_tag gravatar_icon(note.author_email), :class => "left", :width => 16
|
|
|
|
|
2011-12-30 14:56:34 -05:00
|
|
|
= note.attachment_identifier
|
2012-02-18 08:59:01 -05:00
|
|
|
%td
|
|
|
|
Added
|
|
|
|
= time_ago_in_words(note.created_at)
|
|
|
|
ago
|
2011-12-30 14:56:34 -05:00
|
|
|
- else
|
2012-01-17 18:19:57 -05:00
|
|
|
.notice_holder
|
|
|
|
%li All files attached to project wall, issues etc will be displayed here
|
2011-12-28 02:38:50 -05:00
|
|
|
|
|
|
|
|