mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
13 lines
No EOL
522 B
HTML
13 lines
No EOL
522 B
HTML
<template name="post_edit">
|
|
{{#if ready}}
|
|
<div class="form-page post-edit">
|
|
{{#checker check="edit" doc=post message="sorry_you_cannot_edit_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>
|
|
{{/checker}}
|
|
</div>
|
|
{{else}}
|
|
{{> loading}}
|
|
{{/if}}
|
|
</template> |