?>
					<tr>
						<th>Price Per Ticket:</th>
						<td><input name="price_per_qty" value="$<?php 
            echo number_format($entry->getPricePerQty(), 2);
            ?>
"></td>
					</tr>
				<?php 
        } else {
            if ($_GET['form'] == 'donation') {
                ?>
					<tr>
						<th>Donation Amount:</th>
						<td><input name="donation_amount" value="$<?php 
                echo number_format($entry->getDonationAmount(), 2);
                ?>
"></td>
					</tr>
				<?php 
            } else {
                if ($_GET['form'] == 'flag') {
                    ?>
					<tr>
						<th>Message:</th>
						<td><input name="message" value="<?php 
                    echo esc_html($entry->getMessage());
                    ?>
"></td>
					</tr>
					<tr>