2012-09-21 18:43:49 +09:00
|
|
|
<template name="comment_form">
|
2014-06-27 19:42:33 +09:00
|
|
|
{{#if canComment}}
|
2014-08-20 17:03:54 +09:00
|
|
|
<div class="comment-new module">
|
2014-06-27 19:42:33 +09:00
|
|
|
<form>
|
|
|
|
<div class="comment-field" id="editor">
|
|
|
|
<textarea id="comment" rows="3" autofocus="autofocus"></textarea>
|
|
|
|
</div>
|
|
|
|
<div class="comment-submit">
|
2014-11-28 15:18:55 +09:00
|
|
|
<input type="submit" class="btn btn-primary" value="{{_ "add_comment"}}" title="(⌘+enter)" />
|
2014-06-27 19:42:33 +09:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
2012-09-26 22:11:44 -07:00
|
|
|
</template>
|