summaryrefslogtreecommitdiff
path: root/app/views/pms/show.html.erb
blob: 2f3b94409d96b2b5f8f474e8d723122f6de9c20b (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
<p id="notice"><%= notice %></p>

<p>
  <strong>Author:</strong>
  <%= @pm.author %>
</p>

<p>
  <strong>Recipient:</strong>
  <%= @pm.recipient %>
</p>

<p>
  <strong>Message:</strong>
  <%= @pm.message %>
</p>

<p>
  <strong>Subject:</strong>
  <%= @pm.subject %>
</p>

<p>
  <strong>Conversation:</strong>
  <%= @pm.conversation %>
</p>

<%= link_to 'Edit', edit_pm_path(@pm) %> |
<%= link_to 'Back', pms_path %>