25 lines
555 B
Plaintext
25 lines
555 B
Plaintext
= render "project_head"
|
|
- unless @notes.empty?
|
|
%table
|
|
%thead
|
|
%tr
|
|
%th File name
|
|
%th
|
|
|
|
- @notes.each do |note|
|
|
%tr
|
|
%td
|
|
%a{href: note.attachment.url}
|
|
= image_tag gravatar_icon(note.author_email), class: "left", width: 16
|
|
|
|
= note.attachment_identifier
|
|
%td
|
|
Added
|
|
= time_ago_in_words(note.created_at)
|
|
ago
|
|
- else
|
|
.alert-message.block-message
|
|
%span All files attached to project wall, issues etc will be displayed here
|
|
|
|
|