<td><?php 
        echo $entry->getGroupSize();
        ?>
</td>
							</tr>
							<?php 
        if ($entry->getFloatParkingSpaces() > 0) {
            ?>
								<tr>
									<th>Float Parking Spots:</th>
									<td>
										<?php 
            echo $entry->getFloatParkingSpaces();
            ?>
										($<?php 
            echo number_format($entry->getFloatParkingSpaces() * $entry->getFloatParkingSpaceCost(), 2);
            ?>
)
									</td>
								</tr>
							<?php 
        }
        ?>
							<tr>
								<th>Needs Amped Sound:</th>
								<td><?php 
        echo $entry->needsAmpedSound() ? 'Yes' : 'No';
        ?>
</td>
							</tr>
							<?php