addsearch.html.php 780 B

123456789101112131415161718192021
  1. <?= $this->form->create(null, array('method' => 'get')); ?>
  2. <?= $this->form->text('Search', array('value' => 'Search for...')); ?>
  3. <?= $this->form->submit('Go', array('class' => 'button')); ?>
  4. <?= $this->form->end(); ?>
  5. <?php if (isset($content)): ?>
  6. <table class="table">
  7. <tr><th>Entry #</th><th>Name</th><th>Type</th><th>Episodes</th><th>Score</th><th>Add</th></tr>
  8. <?php $i = 1; foreach($content as $result): ?>
  9. <tr>
  10. <td># <?= $i ?></td>
  11. <td><?= $result->title ?></td>
  12. <td><?= $result->view_type ?></td>
  13. <td><?= $result->episode_count ?></td>
  14. <td><?= $result->mal_score ?></td>
  15. <td><button class="green"><a href="/animelist/add/<?= $result->special_id ?>">Add</a></button></td>
  16. <?php $i++; ?>
  17. </tr>
  18. <?php endforeach; ?>
  19. </table>
  20. <?php endif; ?>