@if (($kin_question->status ?? 'open') === 'accepted')
{{ $lang->kin_status_accepted }}
@else
{{ $lang->kin_status_open }}
@endif
@if (trim((string)$kin_category_title) !== '')
{{ $kin_category_title }}
@endif
@if ($kin_use_point && (int)($kin_question->point ?? 0) > 0)
{{ $lang->kin_point }} {{ number_format($kin_question->point) }}
@endif
{{ $oDocument->getTitle() }}
@php $zmk_q_author_srl = abs((int)$oDocument->get('member_srl')); @endphp @php $zmk_q_stats = $kin_author_stats[$zmk_q_author_srl] ?? null; @endphp
@if ($zmk_q_author_srl)
@if ($zmk_q_stats && $zmk_q_stats['profile_image'])
@else
{{ mb_substr($oDocument->getNickName(), 0, 1) }}
@endif
{{ $oDocument->getNickName() }}
@if ($zmk_q_stats)
{{ $lang->kin_answers }} {{ number_format($zmk_q_stats['total']) }} · {{ $lang->kin_status_accepted }} {{ number_format($zmk_q_stats['accepted']) }}@if ($zmk_q_stats['total'] > 0) · {{ $lang->kin_accept_rate }} {{ round($zmk_q_stats['accepted'] / $zmk_q_stats['total'] * 100) }}%@endif
@endif
{{ $lang->kin_activity }}
@else
{{ mb_substr($oDocument->getNickName(), 0, 1) }}
{{ $oDocument->getNickName() }}
@endif
{!! $oDocument->getContent(false) !!}
@if ($oDocument->hasUploadedFiles())
{{ $lang->kin_files }} {{ count($oDocument->getUploadedFiles()) }}
@endif
-
@foreach ($oDocument->getUploadedFiles() as $file)
- {{ $file->source_filename }} {{ FileHandler::filesize($file->file_size) }} @endforeach
@if ($kin_use_vote_up)
@endif
@if ($kin_use_vote_down)
@endif
{{ $lang->kin_list }}
@if ($oDocument->isEditable())
{{ $lang->cmd_modify }}
@endif
@if ($oDocument->isGranted())
{{ $lang->cmd_delete }}
@endif
{{-- 질문에 단 댓글 --}}
{{ $lang->kin_question_comments }} {{ count($oDocument->getComments() ?: []) }}
@foreach ($oDocument->getComments() ?: [] as $comment)
@endforeach
@if ($grant->write_comment)
@endif
{{ $comment->getNickName() }}
@if ($comment->isEditable())
{{ $lang->cmd_modify }}
@endif
@if ($comment->isGranted())
@endif
{!! $comment->getContent(false) !!}