aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/refinery/blog/admin/comments/show.html.erb
blob: 2246c2fcc5acfa4ec105c29043c75e47698cd0c4 (plain) (blame)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<div id='actions'>
  <h2><%= t('.details')%></h2>
  <p>
    <strong><%= t('.age') %>:</strong> <%= time_ago_in_words(@comment.created_at) %>
  </p>
  <h2><%= t('.actions') %></h2>
  <ul>
    <li>
      <%= link_to t('.back'), refinery.blog_admin_comments_path, :class => "back_icon" %>
    </li>
    <li>
      <%= link_to t('.reject'), refinery.rejected_blog_admin_comment_path(@comment, :return_to => 'rejected'),
          :class => 'comment_cross_icon' unless @comment.rejected? %>
    </li>
    <li>
      <%= link_to t('.approve'), refinery.approved_blog_admin_comment_path(@comment, :return_to => 'approved'),
          :class => 'comment_tick_icon' unless @comment.approved? %>
    </li>
  </ul>
</div>
<div id='records'>
  <h2><%= t('.comment') %></h2>
  <table id='inquiry'>
    <tr>
      <td>
        <strong><%= t('.blog_post') %></strong>
      </td>
      <td>
        <%= link_to @comment.post.title,
                    refinery.blog_post_path(@comment.post, :anchor => "comment-#{@comment.to_param}"),
                    :target => '_blank' %>
      </td>
    </tr>
    <tr>
      <td>
        <strong><%= t('.from') %></strong>
      </td>
      <td>
        <%= @comment.name %> [<%= mail_to @comment.email, @comment.email, {:title => t('.click_to_email')} %>]
      </td>
    </tr>
    <tr>
      <td>
        <strong><%= t('.date') %></strong>
      </td>
      <td>
        <%= l(Date.parse(@comment.created_at.to_s), :format => :long) %>
      </td>
    </tr>
    <tr>
      <td valign='top'>
        <strong><%= t('.message') %></strong>
      </td>
      <td>
        <p style='margin-top: 0px'>
          <%= @comment.message.gsub("\r\n\r\n", "\r\n").gsub("\r\n", "</p><p>") %>
        </p>
      </td>
    </tr>
  </table>
</div>

<% content_for :stylesheets, stylesheet_link_tag('refinery/blog/backend') %>