This repository has been archived on 2024-12-01. You can view files and clone it, but cannot push or open issues or pull requests.
redmine_rodax_crm/app/views/notes/_last_notes.html.erb
2012-01-03 16:18:32 +00:00

9 lines
258 B
Plaintext

<% if last_notes && last_notes.any? %>
<h3><%= l(:label_last_notes) %></h3>
<div id="notes">
<% last_notes.each do |note| %>
<%= render :partial => 'notes/note_data', :locals => {:limit => 100}, :object => note %>
<% end %>
</div>
<% end %>