19 lines
600 B
Plaintext
19 lines
600 B
Plaintext
= render "project_head"
|
|
- unless @notes.empty?
|
|
%div.update-data.ui-box.ui-box-small
|
|
.data
|
|
- @notes.each do |note|
|
|
%a.update-item{:href => note.attachment.url}
|
|
= image_tag gravatar_icon(note.author_email), :class => "left", :width => 16
|
|
%span.update-title{:style => "margin-bottom:0px;"}
|
|
= note.attachment_identifier
|
|
%span.update-author.right
|
|
Added
|
|
= time_ago_in_words(note.created_at)
|
|
ago
|
|
- else
|
|
.notice_holder
|
|
%li All files attached to project wall, issues etc will be displayed here
|
|
|
|
|