mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
20 lines
599 B
PHP
20 lines
599 B
PHP
<?php if (empty($events)): ?>
|
|
<p class="alert"><?= t('There is no activity yet.') ?></p>
|
|
<?php else: ?>
|
|
<?php foreach ($events as $event): ?>
|
|
<div class="activity-event">
|
|
<?= $this->avatar->render(
|
|
$event['creator_id'],
|
|
$event['author_username'],
|
|
$event['author_name'],
|
|
$event['email'],
|
|
$event['avatar_path']
|
|
) ?>
|
|
|
|
<div class="activity-content">
|
|
<?= $event['event_content'] ?>
|
|
</div>
|
|
</div>
|
|
<?php endforeach ?>
|
|
<?php endif ?>
|
|
|