Commit b45022c85be5d9fec25b5bcf754c5c2f61ac7d5c
Exists in
master
and in
1 other branch
Merge dev branch into master branch (vv3.7.9.61)
Showing
1 changed file
with
15 additions
and
4 deletions
Show diff stats
src/Template/Pages/home_app.ctp
@@ -15,16 +15,27 @@ echo '<p>'; | @@ -15,16 +15,27 @@ echo '<p>'; | ||
15 | 15 | ||
16 | echo '<table cellpadding="0" cellspacing="0" style="width: 270px;">'; | 16 | echo '<table cellpadding="0" cellspacing="0" style="width: 270px;">'; |
17 | echo '<tr><th></th></tr>'; | 17 | echo '<tr><th></th></tr>'; |
18 | -echo '<tr><td> ' . $this->Html->link('Voir mes matériels', [ | 18 | + |
19 | +echo '<tr><td>'; | ||
20 | +echo '<a href="/pages/changes">Changements faits sur le logiciel</a>'; | ||
21 | +echo '</td></tr>'; | ||
22 | + | ||
23 | +echo '<tr><td>'; | ||
24 | +echo $this->Html->link('Voir mes matériels', [ | ||
19 | 'controller' => 'materiels', | 25 | 'controller' => 'materiels', |
20 | 'action' => 'index', | 26 | 'action' => 'index', |
21 | 'MY' => $username | 27 | 'MY' => $username |
22 | -]) . ' </td></tr>'; | ||
23 | -echo '<tr><td> ' . $this->Html->link('Voir les responsables des domaines', [ | 28 | +]); |
29 | +echo '</td></tr>'; | ||
30 | + | ||
31 | +echo '<tr><td>'; | ||
32 | +echo $this->Html->link('Voir les responsables des domaines', [ | ||
24 | 'controller' => 'users', | 33 | 'controller' => 'users', |
25 | 'action' => 'indexRecap', | 34 | 'action' => 'indexRecap', |
26 | 'sort' => 'sur_categorie_id' | 35 | 'sort' => 'sur_categorie_id' |
27 | -]) . ' </td></tr>'; | 36 | +]); |
37 | +echo '</td></tr>'; | ||
38 | + | ||
28 | echo '</table>'; | 39 | echo '</table>'; |
29 | 40 | ||
30 | // Utilisateur admin/super admin | 41 | // Utilisateur admin/super admin |