Blame view

src/Template/Formules/index.ctp 1.87 KB
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
1
2

<div class="formules index">
8dff32eb   Etienne Pallier   Premiers bugfixes...
3
4
5
6
7
	
	<?php echo '<h2><i class="icon-list"></i> Liste des formules ('.$nbFormules.')</h2>'; ?>
    
    <?=$this->element('button_add'); ?>
    
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
8
    <table cellpadding="0" cellspacing="0">
63c3cb16   epallier   Nombreux petits b...
9
10
11
12
13
		<thead>
			<tr>
				<th class="actions"><?= __('') ?></th>
				<th><?= $this->Paginator->sort('id', 'N°') ?></th>
				<th><?= $this->Paginator->sort('nommesure', 'Nom mesure') ?></th>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
14
				<th><?= $this->Paginator->sort('symbole', 'Symbole') ?></th>
63c3cb16   epallier   Nombreux petits b...
15
16
17
18
19
20
21
				<th><?= $this->Paginator->sort('nbVariable', 'Nombre de variable') ?></th>
				<th><?= $this->Paginator->sort('formule', 'Formule') ?></th>


			</tr>
		</thead>
		<tbody>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
22
23
            <?php foreach ($formules as $formule): ?>
            <tr>
63c3cb16   epallier   Nombreux petits b...
24
				<td class="actions" style="padding: 6px 0; text-align: left;">
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
25
26
27
28
                    <?php if($role == 'Responsable' || $role == 'Super Administrateur') { ?>
                    <?= $this->Form->postLink(__('<i class="icon-trash"></i>'), ['action' => 'delete', $formule->id], ['title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $formule->id)]) ?>
              		<?php } ?>
                </td>
63c3cb16   epallier   Nombreux petits b...
29
				<td class="smallText"><?php echo $this->Html->link('Formule '.$this->Number->format($formule->id), ['action' => 'view', $formule->id])?></td>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
30
				<td class="smallText"><?= h($formule->nommesure) ?></td>
63c3cb16   epallier   Nombreux petits b...
31
32
33
				<td class="smallText"><?= h($formule->symbole) ?></td>
				<td class="smallText"><?= h($formule->nbVariable) ?></td>
				<td class="smallText"><?= h($formule->formule) ?></td>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
34

63c3cb16   epallier   Nombreux petits b...
35
36

			</tr>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
37
38
            <?php endforeach; ?>
        </tbody>
63c3cb16   epallier   Nombreux petits b...
39
	</table>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
40
    
9478e982   Etienne Pallier   refactorisation d...
41
	<?php echo $this->element('pagination'); ?> 
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
42
43
44
    
</div>

b2dade50   Prugniel   modifs Jeanne boo...
45
<!--
63c3cb16   epallier   Nombreux petits b...
46
<div class="actions">
b2dade50   Prugniel   modifs Jeanne boo...
47
48
			<php echo $this->element('menu') ?>
			<php
63c3cb16   epallier   Nombreux petits b...
49
50
51
52
53

echo $this->element('menu_index', [
    'pluralHumanName' => 'Formules',
    'singularHumanName' => 'Formule'
])?>
b2dade50   Prugniel   modifs Jeanne boo...
54
55
		</div>
-->