2012-09-06 09:59:03 +09:00
|
|
|
<template name="post_edit">
|
2015-07-17 16:17:26 +09:00
|
|
|
<div class="form-page post-edit">
|
2015-09-08 11:08:02 +09:00
|
|
|
{{#if canEdit}}
|
|
|
|
<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>
|
|
|
|
<div class="grid grid-module">
|
|
|
|
<a class="delete-link" href="/">{{_ "delete_post"}}</a>
|
|
|
|
</div>
|
|
|
|
{{else}}
|
|
|
|
{{> no_rights message="sorry_you_cannot_edit_this_post"}}
|
|
|
|
{{/if}}
|
2014-11-29 10:25:11 +09:00
|
|
|
</div>
|
2012-09-06 09:59:03 +09:00
|
|
|
</template>
|