Sha256: 55998911cebdb8e8a9dba5f82cb4f74c07ec3b9ed2e5189549fe72a71f1ec05e
Contents?: true
Size: 1.66 KB
Versions: 15
Compression:
Stored size: 1.66 KB
Contents
<section class="comment-list"> <% if post.the_comments.count > 0 %> <div class="row"> <div class="col-md-12"> <h2 class="page-header"><%= ct('comments', default: 'Comments')%></h2> <section class="comment-list"> <%= render partial: "partials/#{defined?(style2) ? 'comments_list2' : 'comments_list'}", locals: { comments: post.the_comments, children: "" } %> </section> </div> </div> <% end %> <div class="row comment_form_panel"> <div class="col-md-12 col-sm-12"> <h3><%= ct('comment_new', default: 'New Comment')%></h3> <% if signin? %> <%= form_for post, url:{action: :save_comment, post_id: post.id}, html: {method: "post", class: "form-comment"} do |f|%> <%= render partial: "camaleon_cms/flash_messages" %> <div class="form-group"> <textarea id="textarea_comments" name="post_comment[content]" class="form-control counted" placeholder="<%= ct('comment', default: 'Here your comment')%>"></textarea> </div> <div class="form-group text-right"> <button type="submit" class="btn btn-info"><%= ct('comment', default: 'Comment')%></button> </div> <% end %> <% else %> <div class="panel-login-comment"><%= ct('comment_msg', default: 'You must be logged in to post a comment')%> <a class="link-login-comment" href="<%= cama_admin_path %>"><%= ct('login', default: 'Login')%></a></div> <% end %> </div> </div> </section>
Version data entries
15 entries across 15 versions & 1 rubygems