1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
| <a href="<?php echo url_for('formation/index') ?>">Liste Des formation</a>
<a href="<?php echo url_for('conge/index') ?>">Liste Des Congés</a>
<a href="<?php echo url_for('category/index') ?>">Liste Des Categories</a><a href="<?php echo url_for('personnel/new') ?>"><h4>Ajouter Employer</h4></a>
<h1>Liste Des Personnels</h1>
<div class="job" style='float:left; width: 200px;' >
<table >
<tr><?php foreach ($categories as $category): ?>
<div class="category_<?php echo Jobeet::slugify($category->getName()) ?>" style='float:left;width: 180px; '>
<div class="category" style='float:left;width: 200px;' >
<h2><?php echo $category ?></h2>
</div>
<table class="jobs">
<?php foreach ($category->getActiveJobs() as $i => $personnel): ?>
<tr class="<?php echo fmod($i, 2) ? 'even' : 'odd' ?>">
<td class="nom">
<a href="<?php echo url_for('personnel/show?id='.$personnel->getId()) ?>">
<?php echo $personnel->getCin() ?>
</td>
<td class="cin">
<?php echo $personnel->getNom() ?>
</td>
<td class="category">
<?php echo $personnel->getPrenom() ?>
</td>
<td class="category">
<?php echo $personnel->getSalaire() ?>
</td>
</tr>
<?php endforeach; ?>
</table>
</div>
<?php endforeach; ?>
</tr>
</table>
</div> |
Partager