Example #1
0
    <h1>Blacklist Entries</h1>
    <table class="table table-striped">
      <tr>
        <th>Badge Name</th>
        <th>Legal Name</th>
        <th>Trigger Badge Names</th>
        <th>Trigger Legal Names</th>
        <th>Reason</th>
        <th>Type</th>
        <th>Actions</th>
      </tr>
      <?php 
foreach ($blacklists as $blacklist) {
    ?>
        <?php 
    $type = BlacklistType::cached_find_by_db_name($blacklist->type);
    ?>
        <tr class="<?php 
    echo $type->alert_color;
    ?>
">
          <td><?php 
    echo $blacklist->badge_name ?: "<i>none</i>";
    ?>
</td>
          <td><?php 
    echo $blacklist->legal_name ?: "<i>none</i>";
    ?>
</td>
          <td><?php 
    echo nl2br($blacklist->trigger_badge_names, false);