<td><?php 
        echo $entry->getEntryType();
        ?>
</td>
			</tr>
			<tr>
				<th>Corner Booth:</th>
				<td><?php 
        echo $entry->isCornerBooth() ? 'Yes' : 'No';
        ?>
</td>
			</tr>
			<tr>
				<th>Comments/Notes:</th>
				<td><?php 
        echo $entry->getDescription();
        ?>
</td>
			</tr>
			<?php 
        if ($entry->getAmountDue() > 0) {
            ?>
				<tr>
					<th>Amount Due:</th>
					<td>$<?php 
            echo number_format($entry->getAmountDue(), 2);
            ?>
</td>
				</tr>
				<tr>
					<th></th>