<table>
<tr>
<th></th>
<th>nazwa</th>
<th>#p</th>
</tr>
<?php foreach ($czcionki as $cz) : ?>
<tr>
<td>
<?php if (!$cz->getPodglad()): ?>
<?php echo image_tag('brak', array('alt' => '')) ?>
<?php endif; ?>
</td>
<td class="brak-podgladu">
<a href="<?php echo url_for('czcionka/show?slug=' . $cz->getSlug()) ?>">
<?php echo image_tag('cz/img/' . $cz->getSlug(), array('alt' => $cz)) ?>
</a>
</td>
<td><?php echo $cz->getLiczbaprojektow(); ?></td>
</tr>
<?php endforeach; ?>
</table>
Listing 17.10. Widok częściowy czcionka/lista
Rozdział 17. Widoki częściowe