blob: ca8d9bf5608a868b77990f82c3be177b517c2745 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
<p>
<strong>Participants:</strong>
<% receps = @pm.conversation.participants %>
<% receps.each do |recep| %>
<% #unless recep == @pm.conversation.last_sender %>
<%= recep.user_name %>
<%= "," %>
<% #end %>
<% end %>
<%= "and the NSA" %>
</p>
<p>
<strong>Subject:</strong>
<%= @pm.conversation.subject %>
</p>
<% receipts = @pm.conversation.receipts_for current_user %>
<% receipts.each do |receipt| %>
<% message = receipt.message %>
<p> ________________________________________________ </p>
<p>
<b><%= message.sender.user_name %></b>
<%= ":" %>
<%= message.body %>
</p>
<% end %>
<p> ________________________________________________ </p>
<p>
<%= form_for(@pm) do |f| %>
<div class="field">
<%= f.text_area :message %>
</div>
<div class="actions">
<%= submit_tag("Reply", :class => "signup") %>
</div>
<% end %>
</p>
<% @pm.conversation.mark_as_read(current_user) %>
<%= link_to 'Back', pms_path %>
|