Vulcan/packages/telescope-comments/lib/client/templates/comment_edit.html

26 lines
1,002 B
HTML
Raw Normal View History

<template name="comment_edit">
2015-04-08 09:05:15 +09:00
<div class="grid">
{{#with comment}}
<form class="grid-block form-horizontal">
<div class="control-group">
<label class="control-label">{{_ "comment_"}}</label>
2014-09-16 12:12:48 +09:00
<div class="controls comment-field" id="editor"><textarea id="body" value="" class="input-xlarge">{{body}}</textarea></div>
</div>
<div class="form-actions">
<a class="delete-link" href="/comments/deleted">{{_ "delete_comment"}}</a>
2015-04-08 09:05:15 +09:00
<input type="submit" class="button btn-primary" value="{{_ "submit"}}" title="(⌘+enter)" />
</div>
</form>
{{/with}}
</div>
<div class="grid grid-module">
{{> quickForm collection="Comments" doc=comment id="editCommentForm" template="bootstrap3-horizontal" label-class="control-label" input-col-class="controls" type="method-update" meteormethod="editComment"}}
</div>
<div class="grid grid-module">
<a class="delete-link" href="/">{{_ "delete_comment"}}</a>
</div>
</template>