Redesign project list view

This commit is contained in:
Frederic Guillot
2017-02-19 18:27:57 -05:00
parent b5c56d4239
commit a43f71dda9
20 changed files with 217 additions and 156 deletions

View File

@@ -0,0 +1,15 @@
<div class="table-list-details">
<ul>
<?php if ($project['owner_id'] > 0): ?>
<li><?= $this->text->e($project['owner_name'] ?: $project['owner_username']) ?></li>
<?php endif ?>
<?php if ($project['start_date']): ?>
<li><?= t('Start Date: %s', $this->dt->date($project['start_date'])) ?></li>
<?php endif ?>
<?php if ($project['end_date']): ?>
<li><?= t('End Date: %s', $this->dt->date($project['end_date'])) ?></li>
<?php endif ?>
</ul>
</div>