2010-11-19 22:45:18 +01:00
|
|
|
<% note = note_details -%>
|
2013-03-12 18:30:38 +02:00
|
|
|
<div class="note_body"><%= rendered_note(note) %></div>
|
2010-11-19 22:45:18 +01:00
|
|
|
|
|
|
|
|
<div class="note_footer">
|
|
|
|
|
|
|
|
|
|
<%= link_to_delete_note(note, image_tag( "blank.png",:title => t('notes.delete_item_title'), :class=>"delete_item")) %>
|
|
|
|
|
<%= link_to_edit_note(note, image_tag( "blank.png", :title => t('notes.edit_item_title'), :class=>"edit_item") ) %>
|
|
|
|
|
|
2012-04-11 20:21:28 +02:00
|
|
|
| <%= link_to(t('notes.in_project') + note.project.name, note.project, :class=>"footer_link" ) %> |
|
2010-11-19 22:45:18 +01:00
|
|
|
|
|
|
|
|
<%= Note.human_attribute_name('created_at') %>: <%= format_date(note.created_at) %>
|
|
|
|
|
|
|
|
|
|
<% if note.updated_at? -%>
|
|
|
|
|
| <%= Note.human_attribute_name('updated_at') %>: <%= format_date(note.updated_at) %>
|
|
|
|
|
<% end -%>
|
|
|
|
|
</div>
|