mirror of
https://github.com/TracksApp/tracks.git
synced 2025-09-21 21:40:48 +02:00
13 lines
417 B
Text
13 lines
417 B
Text
<% note = mobile_notes -%>
|
|
<div class="mobile_note">
|
|
<%= sanitize(textilize_without_paragraph(note.body)) %>
|
|
</div>
|
|
<div class="mobile_note_info">
|
|
<br/>
|
|
<%= link_to("In: " + note.project.name, formatted_project_path(note.project, :m)) %>
|
|
Created: <%= format_date(note.created_at) %>
|
|
<% if note.updated_at? -%>
|
|
| Modified: <%= format_date(note.updated_at) %>
|
|
<% end -%>
|
|
</div>
|
|
<% note = nil -%>
|