Sha256: 2a87ff3e1502154f8be68c760c6c66107aa7216d703c82202c6b97d943e5e2f5

Contents?: true

Size: 1.13 KB

Versions: 5

Compression:

Stored size: 1.13 KB

Contents

<% # Clients of this partial must supply the following variables:
   # thread
   # user
   # per_page

   hidden_class = @new_comment.nil? ? ' commontator_hidden' : '' %>

<div id="thread_<%= thread.id %>_reply" class="thread_reply">
  <% if thread.is_closed? %>
    <p><%= t 'commontator.thread.status.cannot_post' %></p>
  <% elsif !user %>
    <p><%= t 'commontator.require_login' %>.</p>
  <% else %>
    <div id="thread_<%= thread.id %>_new_comment_form_div" class="thread_new_comment_form<%=
    hidden_class %>">
      <% unless @new_comment.nil? %>
        <%= render :partial => 'commontator/comments/form',
                   :locals => { :comment => @new_comment,
                                :thread => thread,
                                :per_page => per_page } %>
      <% end %>
    </div>

    <% if @new_comment.nil? %>
      <div id="thread_<%= thread.id %>_new_comment_link_div" class="thread_new_comment_link">
        <%= link_to t('commontator.comment.actions.new'),
            commontator.new_thread_comment_path(thread, :per_page => per_page),
            :remote => true %>
      </div>
    <% end %>
  <% end %>
</div>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
commontator-4.11.1 app/views/commontator/threads/_reply.html.erb
commontator-4.11.0 app/views/commontator/threads/_reply.html.erb
commontator-4.10.5 app/views/commontator/threads/_reply.html.erb
commontator-4.10.4 app/views/commontator/threads/_reply.html.erb
commontator-4.10.3 app/views/commontator/threads/_reply.html.erb