Blame view

src/Template/Pages/tools_cat.ctp 748 Bytes
8b709355   Alexandre   Affichage du cont...
1
2

<div class="index">
63c3cb16   epallier   Nombreux petits b...
3
4
5
	<h2>
		<i class="icon-wrench"></i> Gérer les Catégories
	</h2>
b2dade50   Prugniel   modifs Jeanne boo...
6
	<table style="border-collapse: separate; border-spacing: 0; width: 270px;">
63c3cb16   epallier   Nombreux petits b...
7
8
9
		<tr>
			<th></th>
		</tr>
8b709355   Alexandre   Affichage du cont...
10
		<?php
63c3cb16   epallier   Nombreux petits b...
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
echo '<tr><td>';
echo $this->Html->link('Gérer les domaines', [
    'controller' => 'sur_categories',
    'sort' => 'nom'
]);
echo '</td></tr>';

echo '<tr><td>';
echo $this->Html->link('Gérer les catégories', [
    'controller' => 'categories',
    'sort' => 'nom'
]);
echo '</td></tr>';

echo '<tr><td>';
echo $this->Html->link('Gérer les sous-catégories', [
    'controller' => 'sous_categories',
    'sort' => 'nom'
]);
echo '</td></tr>';

?>
	</table>
8b709355   Alexandre   Affichage du cont...
34
35
</div>

b2dade50   Prugniel   modifs Jeanne boo...
36
<!--
63c3cb16   epallier   Nombreux petits b...
37
<div class="actions">
b2dade50   Prugniel   modifs Jeanne boo...
38
			<php echo $this->element('menu') ?>
8b709355   Alexandre   Affichage du cont...
39
		</div>
b2dade50   Prugniel   modifs Jeanne boo...
40
-->