mirror of
https://github.com/flarum/framework.git
synced 2024-11-24 21:20:02 +08:00
fc7db914db
app('view') call to set translator is temporary. See #189
30 lines
959 B
PHP
30 lines
959 B
PHP
<?php
|
|
$discussion = $document->data;
|
|
$postsCount = count($discussion->relationships->posts->data);
|
|
?>
|
|
<div class="container">
|
|
<h2>{{ $discussion->attributes->title }}</h2>
|
|
|
|
<div>
|
|
@foreach ($posts as $post)
|
|
<div>
|
|
<?php $user = $getResource($post->relationships->user->data); ?>
|
|
<h3>{{ $user ? $user->attributes->username : $translator->trans('core.lib.deleted_user_text') }}</h3>
|
|
<div class="Post-body">
|
|
{!! $post->attributes->contentHtml !!}
|
|
</div>
|
|
</div>
|
|
|
|
<hr>
|
|
@endforeach
|
|
</div>
|
|
|
|
@if ($page > 1)
|
|
<a href="{{ $url(['page' => $page - 1]) }}">« {{ $translator->trans('core.basic.previous_page_button') }}</a>
|
|
@endif
|
|
|
|
@if ($page < $postsCount / 20)
|
|
<a href="{{ $url(['page' => $page + 1]) }}">{{ $translator->trans('core.basic.next_page_button') }} »</a>
|
|
@endif
|
|
</div>
|