<tr>
				<th>Address:</th>
				<td>
					<?php 
        echo $entry->getAddress();
        ?>
<br>
					<?php 
        echo $entry->getCSZ();
        ?>
				</td>
			</tr>
			<tr>
				<th>Entry Type:</th>
				<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();
        ?>