diff options
author | Frederic Guillot <fred@kanboard.net> | 2017-11-10 11:56:01 -0800 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2017-11-10 11:56:01 -0800 |
commit | 38a42716430add3bd4d44ef7244c11018beebc7a (patch) | |
tree | 4d498ff13453d97712fadff1356ecb5b0c389d6b /app/Template/task_external_link | |
parent | 455b909e4865f681dfceb969661222e229322e93 (diff) |
Improve CSS layout
Diffstat (limited to 'app/Template/task_external_link')
-rw-r--r-- | app/Template/task_external_link/table.php | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/app/Template/task_external_link/table.php b/app/Template/task_external_link/table.php index ea22d436..5b22161a 100644 --- a/app/Template/task_external_link/table.php +++ b/app/Template/task_external_link/table.php @@ -1,12 +1,15 @@ <?php if (! empty($links)): ?> <table class="table-striped table-scrolling"> - <tr> - <th class="column-15"><?= t('Type') ?></th> - <th><?= t('Title') ?></th> - <th class="column-10"><?= t('Dependency') ?></th> - <th class="column-15"><?= t('Creator') ?></th> - <th class="column-15"><?= t('Date') ?></th> - </tr> + <thead> + <tr> + <th class="column-15"><?= t('Type') ?></th> + <th><?= t('Title') ?></th> + <th class="column-10"><?= t('Dependency') ?></th> + <th class="column-15"><?= t('Creator') ?></th> + <th class="column-15"><?= t('Date') ?></th> + </tr> + </thead> + <tbody> <?php foreach ($links as $link): ?> <tr> <td> @@ -39,5 +42,6 @@ </td> </tr> <?php endforeach ?> + </tbody> </table> <?php endif ?> |