2015-04-07 05:56:00 +02:00
|
|
|
<% if $RepliesEnabled %>
|
|
|
|
<div class="comment-replies-container">
|
|
|
|
<div class="comment-reply-form-holder">
|
2016-02-12 14:24:56 +01:00
|
|
|
<%-- non ajax, only show if replyTo is set --%>
|
|
|
|
<% if $ShowReplyToForm %>$ReplyForm<% end_if %>
|
2015-04-07 05:56:00 +02:00
|
|
|
</div>
|
2016-02-12 14:24:56 +01:00
|
|
|
|
2015-04-07 05:56:00 +02:00
|
|
|
<div class="comment-replies-holder">
|
|
|
|
<% if $Replies %>
|
|
|
|
<ul class="comments-list level-{$Depth}">
|
|
|
|
<% loop $Replies %>
|
|
|
|
<li class="comment $EvenOdd<% if FirstLast %> $FirstLast <% end_if %> $SpamClass">
|
|
|
|
<% include CommentsInterface_singlecomment %>
|
|
|
|
</li>
|
|
|
|
<% end_loop %>
|
|
|
|
</ul>
|
|
|
|
<% with $Replies %>
|
|
|
|
<% include ReplyPagination %>
|
|
|
|
<% end_with %>
|
|
|
|
<% end_if %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<% end_if %>
|