view.ctp 6.83 KB

<div class="groupesMetiers view large-9 medium-8 columns content">
    <h3><?= h($groupesMetier->id) ?></h3>
    <table class="vertical-table">
        <tr>
            <th><?= __('Nom') ?></th>
            <td><?= h($groupesMetier->nom) ?></td>
        </tr>
        <tr>
            <th><?= __('Description') ?></th>
            <td><?= h($groupesMetier->description) ?></td>
        </tr>
        <tr>
            <th><?= __('Id') ?></th>
            <td><?= $this->Number->format($groupesMetier->id) ?></td>
        </tr>
    </table>
    <div class="related">
        <h4><?= __('Related Materiels') ?></h4>
        <?php if (!empty($groupesMetier->materiels)): ?>
        <table cellpadding="0" cellspacing="0">
            <tr>
                <th><?= __('Id') ?></th>
                <th><?= __('Designation') ?></th>
                <th><?= __('Sur Categorie Id') ?></th>
                <th><?= __('Categorie Id') ?></th>
                <th><?= __('Sous Categorie Id') ?></th>
                <th><?= __('Numero Laboratoire') ?></th>
                <th><?= __('Description') ?></th>
                <th><?= __('Materiel Administratif') ?></th>
                <th><?= __('Materiel Technique') ?></th>
                <th><?= __('Status') ?></th>
                <th><?= __('Date Acquisition') ?></th>
                <th><?= __('Fournisseur') ?></th>
                <th><?= __('Prix Ht') ?></th>
                <th><?= __('Eotp') ?></th>
                <th><?= __('Numero Commande') ?></th>
                <th><?= __('Code Comptable') ?></th>
                <th><?= __('Numero Serie') ?></th>
                <th><?= __('Groupes Thematique Id') ?></th>
                <th><?= __('Groupes Metier Id') ?></th>
                <th><?= __('Numero Inventaire Organisme') ?></th>
                <th><?= __('Numero Inventaire Old') ?></th>
                <th><?= __('Date Archivage') ?></th>
                <th><?= __('Etiquette') ?></th>
                <th><?= __('Lieu Stockage') ?></th>
                <th><?= __('Lieu Detail') ?></th>
                <th><?= __('Nom Responsable') ?></th>
                <th><?= __('Email Responsable') ?></th>
                <th><?= __('Nom Createur') ?></th>
                <th><?= __('Nom Modificateur') ?></th>
                <th><?= __('Created') ?></th>
                <th><?= __('Modified') ?></th>
                <th><?= __('Date Reception') ?></th>
                <th><?= __('Organisme Id') ?></th>
                <th><?= __('Site Id') ?></th>
                <th class="actions"><?= __('Actions') ?></th>
            </tr>
            <?php foreach ($groupesMetier->materiels as $materiels): ?>
            <tr>
                <td><?= h($materiels->id) ?></td>
                <td><?= h($materiels->designation) ?></td>
                <td><?= h($materiels->sur_categorie_id) ?></td>
                <td><?= h($materiels->categorie_id) ?></td>
                <td><?= h($materiels->sous_categorie_id) ?></td>
                <td><?= h($materiels->numero_laboratoire) ?></td>
                <td><?= h($materiels->description) ?></td>
                <td><?= h($materiels->materiel_administratif) ?></td>
                <td><?= h($materiels->materiel_technique) ?></td>
                <td><?= h($materiels->status) ?></td>
                <td><?= h($materiels->date_acquisition) ?></td>
                <td><?= h($materiels->fournisseur) ?></td>
                <td><?= h($materiels->prix_ht) ?></td>
                <td><?= h($materiels->eotp) ?></td>
                <td><?= h($materiels->numero_commande) ?></td>
                <td><?= h($materiels->code_comptable) ?></td>
                <td><?= h($materiels->numero_serie) ?></td>
                <td><?= h($materiels->groupes_thematique_id) ?></td>
                <td><?= h($materiels->groupes_metier_id) ?></td>
                <td><?= h($materiels->numero_inventaire_organisme) ?></td>
                <td><?= h($materiels->numero_inventaire_old) ?></td>
                <td><?= h($materiels->date_archivage) ?></td>
                <td><?= h($materiels->etiquette) ?></td>
                <td><?= h($materiels->lieu_stockage) ?></td>
                <td><?= h($materiels->lieu_detail) ?></td>
                <td><?= h($materiels->nom_responsable) ?></td>
                <td><?= h($materiels->email_responsable) ?></td>
                <td><?= h($materiels->nom_createur) ?></td>
                <td><?= h($materiels->nom_modificateur) ?></td>
                <td><?= h($materiels->created) ?></td>
                <td><?= h($materiels->modified) ?></td>
                <td><?= h($materiels->date_reception) ?></td>
                <td><?= h($materiels->organisme_id) ?></td>
                <td><?= h($materiels->site_id) ?></td>
                <td class="actions">
                    <?= $this->Html->link(__('View'), ['controller' => 'Materiels', 'action' => 'view', $materiels->id]) ?>
                    <?= $this->Html->link(__('Edit'), ['controller' => 'Materiels', 'action' => 'edit', $materiels->id]) ?>
                    <?= $this->Form->postLink(__('Delete'), ['controller' => 'Materiels', 'action' => 'delete', $materiels->id], ['confirm' => __('Are you sure you want to delete # {0}?', $materiels->id)]) ?>
                </td>
            </tr>
            <?php endforeach; ?>
        </table>
        <?php endif; ?>
    </div>
    <div class="related">
        <h4><?= __('Related Utilisateurs') ?></h4>
        <?php if (!empty($groupesMetier->users)): ?>
        <table cellpadding="0" cellspacing="0">
            <tr>
                <th><?= __('Id') ?></th>
                <th><?= __('Nom') ?></th>
                <th><?= __('Login') ?></th>
                <th><?= __('Email') ?></th>
                <th><?= __('Role') ?></th>
                <th><?= __('Groupes Metier Id') ?></th>
                <th class="actions"><?= __('Actions') ?></th>
            </tr>
            <?php foreach ($groupesMetier->users as $utilisateurs): ?>
            <tr>
                <td><?= h($utilisateurs->id) ?></td>
                <td><?= h($utilisateurs->nom) ?></td>
                <td><?= h($utilisateurs->username) ?></td>
                <td><?= h($utilisateurs->email) ?></td>
                <td><?= h($utilisateurs->role) ?></td>
                <td><?= h($utilisateurs->groupes_metier_id) ?></td>
                <td class="actions">
                    <?= $this->Html->link(__('View'), ['controller' => 'Users', 'action' => 'view', $utilisateurs->id]) ?>
                    <?= $this->Html->link(__('Edit'), ['controller' => 'Users', 'action' => 'edit', $utilisateurs->id]) ?>
                    <?= $this->Form->postLink(__('Delete'), ['controller' => 'Users', 'action' => 'delete', $utilisateurs->id], ['confirm' => __('Are you sure you want to delete # {0}?', $utilisateurs->id)]) ?>
                </td>
            </tr>
            <?php endforeach; ?>
        </table>
        <?php endif; ?>
    </div>
</div>