summaryrefslogtreecommitdiff
path: root/app/views/pms/show.html.erb
blob: 2c93102c05fbee5e9015f119d3638937169bb571 (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
48
<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> 
  <% @pm.message = "" %>
  <%= 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 %>