mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-23 18:50:12 +01:00
11 lines
403 B
Text
11 lines
403 B
Text
|
|
<div id="display_box_projects">
|
||
|
|
<% if @all_notes.empty? -%>
|
||
|
|
<div class="message"><p>Currently there are no notes: add notes to projects from individual project pages.</p></div>
|
||
|
|
<% else -%>
|
||
|
|
<% for notes in @all_notes -%>
|
||
|
|
<div class="container" id="note-<%= notes.id %>-wrapper">
|
||
|
|
<%= render :partial => 'notes', :object => notes %>
|
||
|
|
</div>
|
||
|
|
<% end -%>
|
||
|
|
<% end -%>
|
||
|
|
</div>
|