<div class="panelHeader">
    <h3>Aggregator</h3>
</div>
<div class="panelContent">
    <table class="data">
        <tr><th>Owner Abbreviation</th>
            <th class="center">Owner Name</th>
            <th class="center">Start Date</th>
            <th class="center">End Date</th>
            <th class="center">Signup Fee Cut %</th>
            <th></th>
        </tr>
        <? if ($this->isOrchardOwner) {
            $rci = 0;
            foreach($this->resultAggregator as $resultAggregator) { 
                $row_class = (++$rci & 1) ? '' : 'alt'; ?>
                <tr class="<?=$row_class?>">
                    <td><?=$resultAggregator['owner_abbrivation']?></td>
                    <td><a href="/cont_mgmt/view_aggr_drr.php?owner_id=<?=$resultAggregator['owner_id']?>"><?=
                        $resultAggregator['owner_name']?></a></td>
                    <td><?=$resultAggregator['agreement_start_date']?></td>
                    <td><?=$resultAggregator['agreement_end_date']?></td>
                    <td><?=$resultAggregator['signup_fees_cut_percentage']?></td>
                    <td><a href="/accounting/editowner/owner_id/<?=$resultAggregator["owner_id"]?>">Edit</a></td>
                </tr>
            <? } ?>
        <? } else {
            $rci = 0;
            foreach($this->resultAggregator as $resultAggregator) { 
                $row_class = (++$rci & 1) ? '' : 'alt'; ?>
                <tr class="<?=$row_class?>">
                    <td><?=$resultAggregator['owner_abbrivation']?></td>
                    <td><a href="/cont_mgmt/view_aggr_drr.php?owner_id=<?=$resultAggregator['owner_id']?>"><?=
                        $resultAggregator['owner_name']?></a></td>
                    <td><?=$resultAggregator['agreement_start_date']?></td>
                    <td><?=$resultAggregator['agreement_end_date']?></td>
                    <td><?=$resultAggregator['signup_fees_cut_percentage']?></td>
                </tr>
            <? } ?>
        <? } ?>
    </table>
</div>
