mirror of
https://github.com/TracksApp/tracks.git
synced 2025-09-22 05:50:47 +02:00
12 lines
360 B
Text
12 lines
360 B
Text
<% note = notes_summary -%>
|
|
<div class="note_wrapper" id="<%= dom_id(note) %>">
|
|
<div class="note_link">
|
|
<%= link_to(
|
|
image_tag("blank.png", :border => 0),
|
|
note,
|
|
:title => t('notes.show_note_title'),
|
|
:class => "link_to_notes icon",
|
|
:id => dom_id(note, "link")) %></div>
|
|
<div class="note_note"><%= rendered_note(note) %></div>
|
|
</div>
|
|
<% note = nil -%>
|