| Subject | <%= @inbox ? 'From' : 'To' %> | <%= @inbox ? 'Received' : 'Sent' %> | <% @messages.each do |m| %> |
|---|---|---|---|
| <%= link_to 'View:', m %> <%= m.subject %> | <% other_person = @inbox ? m.sender : m.recipient %><%= link_to other_person.name, new_message_path(:recipient_id=>other_person.id) %> | <%= m.created_at.to_s(:short) %> | <% if @inbox %> <%= link_to 'Reply', new_message_path(:re=>m.id) %> <% end %> |
<%= will_paginate @messages %>