Vulcan/packages/telescope-posts/lib/client/templates/post_edit.html

11 lines
No EOL
474 B
HTML

<template name="post_edit">
<div class="form-page post-edit">
{{#if canEdit this.post}}
<div class="grid grid-module">
{{> quickForm collection="Posts" doc=post id="editPostForm" template="bootstrap3-horizontal" label-class="control-label" input-col-class="controls" type="method-update" meteormethod="editPost" fields=postFields}}
</div>
{{else}}
{{> no_rights message="sorry_you_cannot_edit_this_post"}}
{{/if}}
</div>
</template>