Sha256: 79b63b2dcaa67c30dadb8db5824df837f291906ba733a1b0fb5f563331379816

Contents?: true

Size: 629 Bytes

Versions: 1

Compression:

Stored size: 629 Bytes

Contents

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

<% 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_div" class="thread_new_comment"></div>

  <span id="thread_<%= thread.id %>_new_comment_link_span" class="thread_new_comment_link">
    <%= link_to t('commontator.comment.actions.new'),
        commontator.new_thread_comment_path(thread, :per_page => @commontator_per_page), :remote => true %>
  </span>
<% end %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
commontator-4.6.0 app/views/commontator/threads/_reply.html.erb~