mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
14 lines
442 B
HTML
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>
|