j'ai executer le syntaxe que tu m'a envoyé et il a ajouter un dossier sfdoctrineplugin dans le dossier web avec 2 sous repertoir css et image je pense k'il ne fait pas appelle a css et image voici mon indexsucees.php :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| <h1>Csss List</h1>
<table>
<thead>
<tr>
<th>Id</th>
<th>Nom</th>
</tr>
</thead>
<tbody>
<?php foreach ($csss as $css): ?>
<tr>
<td><a href="<?php echo url_for('css/edit?id='.$css->getId()) ?>"><?php echo $css->getId() ?></a></td>
<td><?php echo $css->getNom() ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<a href="<?php echo url_for('css/new') ?>">New</a> |
j'ai ajouter
<link rel="stylesheet" type="text/css" href="/nouveau/web/css/global.css" />
et pas de nouveau ???ou il faut faire l'instruction que tu m'a donné avant de cree le module ??
Partager