Menu
- = $this->Html->link(__(' Accueil'),
['controller' => 'pages', 'action' => 'home'],
['escape' => false]); ?>
- = $this->Html->link(' Nouveau matériel',
['controller' => 'Materiels', 'action' => 'add'],
['escape' => false]);?>
- = $this->Html->link(__(' Rechercher un matériel'),
['controller' => 'materiels', 'action' => 'find'],
['escape' => false]); ?>
- = $this->Html->link(__(' Rechercher un suivi'),
['controller' => 'suivis', 'action' => 'find'],
['escape' => false]); ?>
- = $this->Html->link(__(' Rechercher un emprunt'),
['controller' => 'emprunts', 'action' => 'find'],
['escape' => false]); ?>
- = $this->Html->link(__(' Liste des matériels'),
['controller' => 'Materiels', 'action' => 'index'],
['escape' => false]) ?>
- = $this->Html->link(__(' Liste des suivis'),
['controller' => 'Suivis', 'action' => 'index'],
['escape' => false]) ?>
- = $this->Html->link(__(' Liste des emprunts'),
['controller' => 'Emprunts', 'action' => 'index'],
['escape' => false]) ?>
';
echo $this->Html->link(' Voir les autres listes',
['controller' => 'pages', 'action' => 'tools_menu_sm'],
['escape' => false]);
echo '';
?>
- = $this->Html->link(__(' Outils'),
['controller' => 'pages', 'action' => 'tools'],
['escape' => false]) ?>
- = $this->Html->link(__(' A propos'),
['controller' => 'pages', 'action' => 'about'],
['escape' => false]) ?>
Recherche';
//Search function
echo $this->Form->create('Materiel', ['url' => '/materiels/find']);
echo '';
echo $this->Form->end();
endif;
?>