<div class="col-md-7">

					<div class="well">

						<table class="table">
							<tr>
								<th>Order Date:</th>
								<td><?php 
        echo $entry->getCreatedAt('n/j/Y');
        ?>
</td>
							</tr>
							<tr>
								<th>Event:</th>
								<td><?php 
        echo $entry->getEntryYear();
        ?>
 Pride Parade</td>
							</tr>
							<?php 
        if (strlen($entry->getOrganization()) > 0) {
            ?>
								<tr>
									<th>Organization:</th>
									<td><?php 
            echo $entry->getOrganization();
            ?>
</td>
								</tr>
							<?php 
        }