?>
					<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>
						<th>Color:</th>
						<td>
							<select name="color">
								<?php 
                    foreach (\OutSpokane\FlagHandle::getColors() as $color => $price) {
                        ?>
									<option value="<?php 
                        echo $color;
                        ?>
"<?php 
                        if ($color == $entry->getColor()) {