Vulcan/packages/telescope-comments/lib/client/templates/comment_submit.html

10 lines
463 B
HTML

<template name="comment_submit">
{{#if canComment}}
<div class="comment-new module">
<h4 class="comment-new-heading">{{_ "add_comment"}}</h4>
{{> quickForm collection="Comments" id="submitCommentForm" template="bootstrap3-horizontal" input-col-class="controls" type="method" meteormethod="submitComment" fields=commentFields parentContext=this}}
</div>
{{else}}
<p class="cannot-comment-message">{{reason}}</p>
{{/if}}
</template>