Move position of start/due date in task details
This commit is contained in:
@@ -92,12 +92,6 @@
|
|||||||
<span><?= $this->text->e($task['creator_name'] ?: $task['creator_username']) ?></span>
|
<span><?= $this->text->e($task['creator_name'] ?: $task['creator_username']) ?></span>
|
||||||
</li>
|
</li>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
<?php if ($task['date_due']): ?>
|
|
||||||
<li>
|
|
||||||
<strong><?= t('Due date:') ?></strong>
|
|
||||||
<span><?= $this->dt->datetime($task['date_due']) ?></span>
|
|
||||||
</li>
|
|
||||||
<?php endif ?>
|
|
||||||
<?php if ($task['time_estimated']): ?>
|
<?php if ($task['time_estimated']): ?>
|
||||||
<li>
|
<li>
|
||||||
<strong><?= t('Time estimated:') ?></strong>
|
<strong><?= t('Time estimated:') ?></strong>
|
||||||
@@ -116,6 +110,18 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="task-summary-column">
|
<div class="task-summary-column">
|
||||||
<ul class="no-bullet">
|
<ul class="no-bullet">
|
||||||
|
<?php if ($task['date_due']): ?>
|
||||||
|
<li>
|
||||||
|
<strong><?= t('Due date:') ?></strong>
|
||||||
|
<span><?= $this->dt->datetime($task['date_due']) ?></span>
|
||||||
|
</li>
|
||||||
|
<?php endif ?>
|
||||||
|
<?php if ($task['date_started']): ?>
|
||||||
|
<li>
|
||||||
|
<strong><?= t('Started:') ?></strong>
|
||||||
|
<span><?= $this->dt->datetime($task['date_started']) ?></span>
|
||||||
|
</li>
|
||||||
|
<?php endif ?>
|
||||||
<li>
|
<li>
|
||||||
<strong><?= t('Created:') ?></strong>
|
<strong><?= t('Created:') ?></strong>
|
||||||
<span><?= $this->dt->datetime($task['date_creation']) ?></span>
|
<span><?= $this->dt->datetime($task['date_creation']) ?></span>
|
||||||
@@ -130,12 +136,6 @@
|
|||||||
<span><?= $this->dt->datetime($task['date_completed']) ?></span>
|
<span><?= $this->dt->datetime($task['date_completed']) ?></span>
|
||||||
</li>
|
</li>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
<?php if ($task['date_started']): ?>
|
|
||||||
<li>
|
|
||||||
<strong><?= t('Started:') ?></strong>
|
|
||||||
<span><?= $this->dt->datetime($task['date_started']) ?></span>
|
|
||||||
</li>
|
|
||||||
<?php endif ?>
|
|
||||||
<?php if ($task['date_moved']): ?>
|
<?php if ($task['date_moved']): ?>
|
||||||
<li>
|
<li>
|
||||||
<strong><?= t('Moved:') ?></strong>
|
<strong><?= t('Moved:') ?></strong>
|
||||||
|
|||||||
Reference in New Issue
Block a user