コード例 #1
0
ファイル: search.php プロジェクト: epochwolf/kairos
    <table class="table table-striped table-condensed">
      <thead>
        <tr>
          <th>Number</th>
          <th>Badge Name</th>
          <th>Legal Name</th>
          <th>Birthdate</th>
          <th>Admission Level</th>
          <th>Adult</th>
          <th>Action</th>
        </tr>
      </thead>
      <tbody>
        <?php 
foreach (Attendee::search($search_string) as $attendee) {
    ?>
          <tr class="<?php 
    echo row_highlight($attendee);
    ?>
">
            <td><?php 
    echo hilight_search($search_string, $attendee->badge_number);
    ?>
</td>
            <td><?php 
    echo hilight_search($search_string, $attendee->badge_name);
    ?>
</td>
            <td><?php 
    echo hilight_search($search_string, $attendee->legal_name);