Vulcan/client/views/comments/comment_form.html
Daniel Chcouri 2605dcb27c Convert translation keys format to tap:i18n standard
all_lower_cased_underscored_sperated names
2014-11-19 00:00:09 +08:00

14 lines
442 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="{{i18n "add_comment"}}" title="(⌘+enter)" />
</div>
</form>
</div>
{{/if}}
</template>