mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
57 lines
No EOL
2.3 KiB
PHP
57 lines
No EOL
2.3 KiB
PHP
<div class="comment <?= isset($preview) ? 'comment-preview' : '' ?>" id="comment-<?= $comment['id'] ?>">
|
|
|
|
<p class="comment-title">
|
|
<?php if (! empty($comment['email'])): ?>
|
|
<?= $this->user->avatar($comment['email'], $comment['name'] ?: $comment['username']) ?>
|
|
<?php endif ?>
|
|
|
|
<?php if (! empty($comment['username'])): ?>
|
|
<span class="comment-username"><?= $this->e($comment['name'] ?: $comment['username']) ?></span> @
|
|
<?php endif ?>
|
|
|
|
<span class="comment-date"><?= dt('%B %e, %Y at %k:%M %p', $comment['date_creation']) ?></span>
|
|
</p>
|
|
<div class="comment-inner">
|
|
|
|
<?php if (! isset($preview)): ?>
|
|
<ul class="comment-actions">
|
|
<li><a href="#comment-<?= $comment['id'] ?>"><?= t('link') ?></a></li>
|
|
<?php if ((! isset($not_editable) || ! $not_editable) && ($this->user->isAdmin() || $this->user->isCurrentUser($comment['user_id']))): ?>
|
|
<li>
|
|
<?= $this->url->link(t('remove'), 'comment', 'confirm', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'comment_id' => $comment['id'])) ?>
|
|
</li>
|
|
<li>
|
|
<?= $this->url->link(t('edit'), 'comment', 'edit', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'comment_id' => $comment['id'])) ?>
|
|
</li>
|
|
<?php endif ?>
|
|
</ul>
|
|
<?php endif ?>
|
|
|
|
<div class="markdown">
|
|
<?php if (isset($is_public) && $is_public): ?>
|
|
<?= $this->text->markdown(
|
|
$comment['comment'],
|
|
array(
|
|
'controller' => 'task',
|
|
'action' => 'readonly',
|
|
'params' => array(
|
|
'token' => $project['token']
|
|
)
|
|
)
|
|
) ?>
|
|
<?php else: ?>
|
|
<?= $this->text->markdown(
|
|
$comment['comment'],
|
|
array(
|
|
'controller' => 'task',
|
|
'action' => 'show',
|
|
'params' => array(
|
|
'project_id' => $task['project_id']
|
|
)
|
|
)
|
|
) ?>
|
|
<?php endif ?>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|