tracks/app/views/notes/index.html.erb
Marcus Ilgner fd3f69d927 Changed code to support basic i18n.
Added RubyMine configuration and rvm setup to .gitignore.
2010-11-09 16:31:26 +08:00

11 lines
No EOL
357 B
Text

<div id="display_box_projects">
<% if @all_notes.empty? -%>
<div class="message"><p><%= t('notes.no_notes_available') %></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>