mambax7/pedigree

View on GitHub
templates/pedigree_breeder.tpl

Summary

Maintainability
Test Coverage
<{include file='db:pedigree_header.tpl'}>
<table width="100%" class="outer" cellspacing="1">
    <tr>
        <th colspan="2">
            <{$nummatch}>
        </th>
    </tr>
    <tr>
        <td colspan="2" class="head" style="text-align: center;">
            <{$pages}>
        </td>
    </tr>
    <tr>
        <td class="head">
            <{$namelink}>
        </td>
        <td class="head">
            <{$colourlink}>
        </td>
    </tr>
    <tr>
        <{$pageTitle}>
    </tr>

    <{if $breederArray.letters}>
        <div class="pedigree_head_catletters" align="center"><{$breederArray.letters}></div>
        <br>
    <{/if}>

    <!-- Start results loop -->
    <{foreach item=link from=$dogs}>
        <tr class="<{cycle values="even,odd"}>">
            <td>
                <a href="owner.php?ownid=<{$link.id}>"><{$link.name}></a>
            </td>
            <td>
                <{$link.city}>
            </td>

        </tr>
    <{/foreach}>

    <tr>
        <td colspan="3" class="head" style="text-align: center;">
            <{$pages}>
        </td>
    </tr>
</table>