2015-04-21 17:56:16 +02:00
|
|
|
<div class="page-header">
|
|
|
|
<h2><?= t('Transitions') ?></h2>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php if (empty($transitions)): ?>
|
|
|
|
<p class="alert"><?= t('There is nothing to show.') ?></p>
|
|
|
|
<?php else: ?>
|
|
|
|
<table class="table-stripped">
|
|
|
|
<tr>
|
|
|
|
<th><?= t('Date') ?></th>
|
|
|
|
<th><?= t('Source column') ?></th>
|
|
|
|
<th><?= t('Destination column') ?></th>
|
|
|
|
<th><?= t('Executer') ?></th>
|
|
|
|
<th><?= t('Time spent in the column') ?></th>
|
|
|
|
</tr>
|
|
|
|
<?php foreach ($transitions as $transition): ?>
|
|
|
|
<tr>
|
|
|
|
<td><?= dt('%B %e, %Y at %k:%M %p', $transition['date']) ?></td>
|
|
|
|
<td><?= $this->e($transition['src_column']) ?></td>
|
|
|
|
<td><?= $this->e($transition['dst_column']) ?></td>
|
2015-08-16 17:04:56 +02:00
|
|
|
<td><?= $this->url->link($this->e($transition['name'] ?: $transition['username']), 'user', 'show', array('user_id' => $transition['user_id'])) ?></td>
|
|
|
|
<td><?= $this->dt->duration($transition['time_spent']) ?></td>
|
2015-04-21 17:56:16 +02:00
|
|
|
</tr>
|
|
|
|
<?php endforeach ?>
|
|
|
|
</table>
|
|
|
|
<?php endif ?>
|