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

11 lines
432 B
HTML
Raw Normal View History

<template name="comment_submit">
2014-06-27 19:42:33 +09:00
{{#if canComment}}
2014-08-20 17:03:54 +09:00
<div class="comment-new module">
2015-05-06 17:13:10 +09:00
<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}}
2014-06-27 19:42:33 +09:00
</div>
{{else}}
<p>{{reason}}</p>
2014-06-27 19:42:33 +09:00
{{/if}}
</template>