summaryrefslogtreecommitdiff
path: root/app/views/pms/index.html.erb
diff options
context:
space:
mode:
authornfoy <nfoy@purdue.edu>2014-04-23 22:52:58 -0400
committernfoy <nfoy@purdue.edu>2014-04-23 22:52:58 -0400
commit107f1f65c93cbe118a69e76514327c4862c7d51d (patch)
tree48eac93d49763f98425ab78b02c7417ef0586465 /app/views/pms/index.html.erb
parent9afd5a4f7a86eeaab3fa8a0c25609ac7977e0489 (diff)
More mailboxer progress
Diffstat (limited to 'app/views/pms/index.html.erb')
-rw-r--r--app/views/pms/index.html.erb53
1 files changed, 36 insertions, 17 deletions
diff --git a/app/views/pms/index.html.erb b/app/views/pms/index.html.erb
index 73c7a87..1175cb2 100644
--- a/app/views/pms/index.html.erb
+++ b/app/views/pms/index.html.erb
@@ -59,14 +59,26 @@
<td><h3>Inbox<h3></td>
</tr>
<tr>
- <% conversation1 = current_user.mailbox.inbox.first %>
- <% if !conversation1.nil? %>
- <% receipts1 = conversation1.receipts_for current_user %>
- <% receipts1.each do |receipt1| %>
- <% message1 = receipt1.message %>
- <td><%= message1.subject %></td>
- <td><%= message1.body %></td>
- <% end %>
+ <% conversations = current_user.mailbox.inbox %>
+ <% if !conversations.nil? %>
+ <tr>
+ <td><b>From</b></td>
+ <td><b>Subject</b></td>
+ <td><b>Body</b></td>
+ </tr>
+ <% conversations.each do |conversation| %>
+ <% receipts = conversation.receipts_for current_user %>
+ <% receipts.each do |receipt| %>
+ <% message = receipt.message %>
+ <tr>
+ <td><%= conversation.last_sender.user_name %></td>
+ <td><%= message.subject %></td>
+ <td><%= message.body %></td>
+ <td><%# link_to 'Show', pm %></td>
+ </tr>
+ <% end %>
+ <% end %>
+
<% else %>
<td><p> No Messages </p></td>
<% end %>
@@ -76,19 +88,26 @@
<td><h3>Outbox<h3></td>
</tr>
<tr>
- <% conversation1 = current_user.mailbox.sentbox.first %>
- <% if !conversation1.nil? %>
+ <% conversations = current_user.mailbox.sentbox %>
+ <% if !conversations.nil? %>
<tr>
- <td><b>From</b></td>
+ <td><b>To</b></td>
<td><b>Subject</b></td>
<td><b>Body</b></td>
</tr>
- <% receipts1 = conversation1.receipts_for current_user %>
- <% receipts1.each do |receipt1| %>
- <% message1 = receipt1.message %>
- <td><%= message1.subject %></td>
- <td><%= message1.body %></td>
- <% end %>
+ <% conversations.each do |conversation| %>
+ <% receipts = conversation.receipts_for current_user %>
+ <% receipts.each do |receipt| %>
+ <% message = receipt.message %>
+ <tr>
+ <td>Doesn't work</td>
+ <td><%= message.subject %></td>
+ <td><%= message.body %></td>
+ <td><%# link_to 'Show', conversation %></td>
+ </tr>
+ <% end %>
+ <% end %>
+
<% else %>
<td><p> No Messages </p></td>
<% end %>