mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
10 lines
463 B
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>
|