2010-11-11 22:14:14 +01:00
|
|
|
<div class="container" id="note-<%= note.id %>-wrapper">
|
|
|
|
|
<div id="<%= dom_id(note, 'container') %>">
|
|
|
|
|
|
|
|
|
|
<h2><%= link_to(t('notes.note_header', :id => note.id.to_s), note_path(note), :title => t('notes.note_link_title', :id => note.id.to_s)) %></h2>
|
|
|
|
|
|
|
|
|
|
<div class="project_notes" id="<%= dom_id(note) %>">
|
2010-11-19 22:45:18 +01:00
|
|
|
<%= render :partial => "notes/note_details", :object => note %>
|
2010-11-11 22:14:14 +01:00
|
|
|
</div>
|
|
|
|
|
|
2010-11-19 22:45:18 +01:00
|
|
|
<div id="<%= dom_id(note, 'edit') %>" class="note-edit-form" style="display:none;">
|
2010-11-11 22:14:14 +01:00
|
|
|
<%= render :partial => "notes/note_edit_form", :object => note %>
|
|
|
|
|
</div>
|
2010-11-19 22:45:18 +01:00
|
|
|
|
2010-11-11 22:14:14 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|