Vulcan/client/views/comments/comment_form.html

15 lines
435 B
HTML
Raw Normal View History

<template name="comment_form">
2014-06-27 19:42:33 +09:00
{{#if canComment}}
<div class="comment-new">
<form>
<div class="comment-field" id="editor">
<textarea id="comment" rows="3" autofocus="autofocus"></textarea>
</div>
<div class="comment-submit">
<input type="submit" class="button" value="{{i18n "Add Comment"}}" title="(⌘+enter)" />
</div>
</form>
</div>
{{/if}}
</template>