예제 #1
0
        <tr>
          <th>Badge #</th>
          <th>Badge Name</th>
          <th>Legal Name</th>
          <th>Birthdate</th>
          <th>Level</th>
          <th>TShirt</th>
          <th class="hidden-print">Actions</th>
        </tr>
      </thead>
      <tbody>
        <?php 
foreach ($query as $attendee) {
    ?>
          <tr class="<?php 
    echo row_highlight($attendee);
    ?>
 attendee" data-id="<?php 
    echo $attendee->id;
    ?>
">
            <td><?php 
    echo $attendee->badge_number;
    ?>
</td>
            <td><?php 
    echo $attendee->badge_name;
    ?>
</td>
            <td><?php 
    echo $attendee->legal_name;
예제 #2
0
    <h1>
      At Door Check In (<?php 
echo $count;
?>
)
      <small><?php 
echo add_attendee_button();
?>
</small>
    </h1>
    <?php 
foreach ($query as $attendee) {
    ?>
      <div class="col-md-6">      
        <div class="panel panel-default <?php 
    echo row_highlight($attendee, "panel");
    ?>
" id="attendee-<?php 
    echo $attendee->id;
    ?>
">
          <div class="panel-heading" style="overflow: hidden;">
            <div class="pull-left">
              <h3 class="panel-title">
                <?php 
    echo $attendee->display_name();
    ?>
              </h3>
              <div>
                <?php 
    if ($attendee->minor()) {