<table class="sortable">
<thead>
  <tr>
    <th>Venue</th>
    <td>Club Night</td>
    <th>Cider</th>
    <th>Beer</th>
    <th>Vodka Single</th>
    <th>Vodka Double</th>
    <th>Jaeger Bomb</th>
    <th>Cheapest Shot</th>
    <th>Normal Entry Price</th>
    <th>Info</th>
    <th class="sorttable_nosort">Guestlist</th>
  </tr>
</thead>
<tbody>
  <?php foreach($drinkPrices as $drinkPrice): ?>
  <tr>
    <td><?php echo  $drinkPrice->club_name ; ?></td>
    <td><?php echo  $drinkPrice->night_name ; ?></td>
    <td><?php echo  Util::gbf($drinkPrice->pint_cider) ; ?></td>
    <td><?php echo  Util::gbf($drinkPrice->pint_beer) ; ?></td>
    <td><?php echo  Util::gbf($drinkPrice->vodka_mixer_single) ; ?></td>
    <td><?php echo  Util::gbf($drinkPrice->vodka_mixer_double) ; ?></td>
    <td><?php echo  Util::gbf($drinkPrice->jaeger_bomb) ; ?></td>
    <td><?php echo  Util::gbf($drinkPrice->cheapest_shot) ; ?></td>
    <td><?php echo  Util::gbf($drinkPrice->normal_entry_prices) ; ?></td>
    <td><a class="button nyroModal"
      onclick="infoPopup()" 
      href="#test">Info</a></td>
    <td><a class="button nyroModal"
      onclick="loadGuestListForm('<?php echo $drinkPrice->club_name; ?>', '<?php echo $drinkPrice->day; ?>')" 
      href="#test">Guestlist</a></td>
  </tr>
  <?php endforeach; ?>
  <!-- TODO Insert pop-up modal partial for feature here -->
</tbody>



</table>