diff options
author | nfoy <nfoy@purdue.edu> | 2014-04-24 19:15:27 -0400 |
---|---|---|
committer | nfoy <nfoy@purdue.edu> | 2014-04-24 19:15:27 -0400 |
commit | ddfe11c0444cf424cad3d14bc9be48d32423f3dd (patch) | |
tree | 135db4cd6bf22380953315ea1244f720a5419e2d /app/views/pms | |
parent | 1b11684986136ee87da6242c3ba6aba5ef581510 (diff) | |
parent | 67d95e5b92e3d19765c7ccaf5460737ffe2173f4 (diff) |
Merge branch 'clean2'
Conflicts:
app/models/pm.rb
app/views/pms/index.html.erb
app/views/pms/show.html.erb
Diffstat (limited to 'app/views/pms')
-rw-r--r-- | app/views/pms/_form.html.erb | 8 | ||||
-rw-r--r-- | app/views/pms/index.html.erb | 70 | ||||
-rw-r--r-- | app/views/pms/index.json.jbuilder | 2 | ||||
-rw-r--r-- | app/views/pms/show.html.erb | 11 | ||||
-rw-r--r-- | app/views/pms/show.json.jbuilder | 2 |
5 files changed, 20 insertions, 73 deletions
diff --git a/app/views/pms/_form.html.erb b/app/views/pms/_form.html.erb index b329e24..a885e27 100644 --- a/app/views/pms/_form.html.erb +++ b/app/views/pms/_form.html.erb @@ -23,6 +23,14 @@ <%= f.label :message %><br> <%= f.text_area :message %> </div> + <div class="field"> + <%= f.label :subject %><br> + <%= f.text_area :subject %> + </div> + <div class="field"> + <%= f.label :conversation_id %><br> + <%= f.text_field :conversation_id %> + </div> <div class="actions"> <%= f.submit %> </div> diff --git a/app/views/pms/index.html.erb b/app/views/pms/index.html.erb index ee31e08..b5f4884 100644 --- a/app/views/pms/index.html.erb +++ b/app/views/pms/index.html.erb @@ -68,73 +68,3 @@ <br> <%= link_to 'New Pm', new_pm_path %> -<h1>Conversations</h1> - -<table> - <tbody> - <tr> - <td><h3>Inbox<h3></td> - </tr> - <tr> - <% conversations = current_user.mailbox.inbox %> - <% if !conversations.empty? %> - <%# require 'pp' %> - <%= conversations.class %> - <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.where(conversation: conversation) %></td> - </tr> - <% end %> - <% end %> - - <% else %> - <td><p> No Messages </p></td> - <% end %> - </tr> - - <tr> - <td><h3>Outbox<h3></td> - </tr> - <tr> - <% conversations = current_user.mailbox.sentbox %> - <% if !conversations.empty? %> - <tr> - <td><b>To</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>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 %> - </tr> - - </tbody> -</table> - -<br> - -<%= link_to 'New Pm', new_pm_path %> diff --git a/app/views/pms/index.json.jbuilder b/app/views/pms/index.json.jbuilder index fcfca84..3dc1abb 100644 --- a/app/views/pms/index.json.jbuilder +++ b/app/views/pms/index.json.jbuilder @@ -1,4 +1,4 @@ json.array!(@pms) do |pm| - json.extract! pm, :id, :author_id, :recipient_id, :message + json.extract! pm, :id, :author_id, :recipient_id, :message, :subject, :conversation_id json.url pm_url(pm, format: :json) end diff --git a/app/views/pms/show.html.erb b/app/views/pms/show.html.erb index aec160f..6f81d1b 100644 --- a/app/views/pms/show.html.erb +++ b/app/views/pms/show.html.erb @@ -13,5 +13,14 @@ <%# @pm.message %> </p> -<%# link_to 'Edit', edit_pm_path(@pm) %> | +<p> + <strong>Subject:</strong> + <%= @pm.subject %> +</p> + +<p> + <strong>Conversation:</strong> + <%= @pm.conversation %> +</p> + <%= link_to 'Back', pms_path %> diff --git a/app/views/pms/show.json.jbuilder b/app/views/pms/show.json.jbuilder index 94252e9..4e69026 100644 --- a/app/views/pms/show.json.jbuilder +++ b/app/views/pms/show.json.jbuilder @@ -1 +1 @@ -json.extract! @pm, :id, :author_id, :recipient_id, :message, :created_at, :updated_at +json.extract! @pm, :id, :author_id, :recipient_id, :message, :subject, :conversation_id, :created_at, :updated_at |