2012-09-06 10:18:26 +09:00
|
|
|
<template name="post_page">
|
2015-09-17 14:51:14 +09:00
|
|
|
{{#if ready}}
|
|
|
|
{{#with post}}
|
|
|
|
{{#if canView}}
|
|
|
|
{{#if isPending}}
|
|
|
|
<div class="grid">
|
|
|
|
<div class="error pending-message module">
|
|
|
|
{{_ "thanks_your_post_is_awaiting_approval"}}
|
|
|
|
</div>
|
2015-09-08 11:08:02 +09:00
|
|
|
</div>
|
2015-09-17 14:51:14 +09:00
|
|
|
{{/if}}
|
|
|
|
<div class="single-post grid">
|
|
|
|
<div class="posts posts-list">
|
|
|
|
{{> post_item}}
|
|
|
|
</div>
|
|
|
|
{{#if body}}
|
|
|
|
{{> post_body}}
|
|
|
|
{{/if}}
|
|
|
|
{{> comment_submit}}
|
|
|
|
{{> comment_list}}
|
2015-07-22 15:06:45 +09:00
|
|
|
</div>
|
2015-09-17 14:51:14 +09:00
|
|
|
{{else}}
|
|
|
|
{{> no_rights}}
|
2015-09-08 11:08:02 +09:00
|
|
|
{{/if}}
|
2015-09-17 14:51:14 +09:00
|
|
|
{{/with}}
|
|
|
|
{{else}}
|
|
|
|
<div class="posts-loading">{{> loading}}</div>
|
|
|
|
{{/if}}
|
2015-05-09 13:26:31 +09:00
|
|
|
</template>
|