summaryrefslogtreecommitdiff
path: root/app/views/pms/show.html.erb
blob: 35deaa9eb862e7cd8e08a2dd0839c7438e641906 (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
<%= link_to '« Back to all private messages', pms_path, class: :breadcrumb %>

<div>
	<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>
</div>

<% receipts = @pm.conversation.receipts_for current_user %>
<% receipts.each do |receipt| %>
	<% message = receipt.message %>
	<hr>
	<p>
		<strong><%= message.sender.user_name %>:</strong>
		<%= message.body %>
	</p>
<% end %>

<hr>

<div>
	<% @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 %>
</div>

<% @pm.conversation.mark_as_read(current_user) %>