mirror of
https://github.com/silverstripe/silverstripe-comments
synced 2024-10-22 11:05:49 +02:00
71 lines
2.4 KiB
Scheme
Executable File
71 lines
2.4 KiB
Scheme
Executable File
<% if CommentsEnabled %>
|
|
<div id="$CommentHolderID" class="comments-holder-container">
|
|
|
|
<h4><% _t('POSTCOM','Post your comment') %></h4>
|
|
|
|
<% if AddCommentForm %>
|
|
<% if CanPost %>
|
|
$AddCommentForm
|
|
<% else %>
|
|
<p><% _t('COMMENTLOGINERROR', 'You cannot post comments until you have logged in') %><% if PostingRequiresPermission %>,<% _t('COMMENTPERMISSIONERROR', 'and that you have an appropriate permission level') %><% end_if %>.
|
|
<a href="Security/login?BackURL={$Page.Link}" title="<% _t('LOGINTOPOSTCOMMENT', 'Login to post a comment') %>"><% _t('COMMENTPOSTLOGIN', 'Login Here') %></a>.
|
|
</p>
|
|
<% end_if %>
|
|
<% else %>
|
|
<p><% _t('COMMENTSDISABLED', 'Posting comments has been disabled') %>.</p>
|
|
<% end_if %>
|
|
|
|
<h4><% _t('COMMENTS','Comments') %></h4>
|
|
|
|
<div class="comments-holder">
|
|
<% if Comments %>
|
|
<ul class="comments-list">
|
|
<% control Comments %>
|
|
<li class="comment $EvenOdd<% if FirstLast %> $FirstLast <% end_if %> $SpamClass">
|
|
<% include CommentsInterface_singlecomment %>
|
|
</li>
|
|
<% end_control %>
|
|
</ul>
|
|
|
|
<% if Comments.MoreThanOnePage %>
|
|
<div id="PageCommentsPagination">
|
|
<p>
|
|
<% if Comments.PrevLink %>
|
|
<a href="$Comments.PrevLink">« <% _t('PREV','previous') %></a>
|
|
<% end_if %>
|
|
|
|
<% if Comments.Pages %>
|
|
<% control Comments.Pages %>
|
|
<% if CurrentBool %>
|
|
<strong>$PageNum</strong>
|
|
<% else %>
|
|
<a href="$Link">$PageNum</a>
|
|
<% end_if %>
|
|
<% end_control %>
|
|
<% end_if %>
|
|
|
|
<% if Comments.NextLink %>
|
|
<a href="$Comments.NextLink"><% _t('NEXT','next') %> »</a>
|
|
<% end_if %>
|
|
</p>
|
|
</div>
|
|
<% end_if %>
|
|
<% else %>
|
|
<p class="no-comments-yet"><% _t('NOCOMMENTSYET','No one has commented on this page yet.') %></p>
|
|
<% end_if %>
|
|
</div>
|
|
|
|
<% if DeleteAllLink %>
|
|
<p class="delete-comments">
|
|
<a href="$DeleteAllLink"><% _t('PageCommentInterface.DELETEALLCOMMENTS','Delete all comments on this page') %></a>
|
|
</p>
|
|
<% end_if %>
|
|
|
|
<p id="CommentsRSSFeed">
|
|
<a class="commentrss" href="$CommentRssLink"><% _t('RSSFEEDCOMMENTS', 'RSS feed for comments on this page') %></a> |
|
|
<a href="PageComment/rss" class="commentrss" title="<% _t('RSSVIEWALLCOMMENTS', 'View all Comments') %>"><% _t('RSSFEEDALLCOMMENTS', 'RSS feed for all comments') %></a>
|
|
</p>
|
|
</div>
|
|
<% end_if %>
|
|
|