<div class='panelHeader'>
    <h3>Instant Grats</h3>
</div>
<div class="panelContent">
    <table class="data">
        <?php
        if (!empty($this->trackInstantGratRecords)) { ?>
            <tr>
                <th>Track Name</th>
                <th>Start Date</th>
            </tr>
            <?php
            foreach ($this->trackInstantGratRecords as $trackInstantGrat) { ?>
                <tr>
                    <td><?=$trackInstantGrat['track_name']?></td>
                    <td><?=date('Y-m-d', strtotime($trackInstantGrat['grats'][0]['date']))?></td>
                </tr>
            <?php
            }
        } else { ?>
            <tr>
                <th>Instant Grats for provided tracks do not exist.</th>
            </tr>
        <?php
        } ?>
   </table>
</div>
