Vulcan/client/views/comments/comment_form.html
2014-11-25 17:16:00 +09:00

14 lines
439 B
HTML

<template name="comment_form">
{{#if canComment}}
<div class="comment-new module">
<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="{{_ "add_comment"}}" title="(⌘+enter)" />
</div>
</form>
</div>
{{/if}}
</template>