mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-17 15:50:13 +01:00
12 lines
463 B
Text
12 lines
463 B
Text
<div class="mobile_note">
|
|
<%= rendered_note(note) %>
|
|
</div>
|
|
<div class="mobile_note_info">
|
|
<br/>
|
|
<%= link_to(t('notes.note_location_link') + note.project.name, project_path(note.project, :format => 'm')) %>
|
|
<%= 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>
|
|
<% note = nil -%>
|