diff options
Diffstat (limited to 'views/search')
-rw-r--r-- | views/search/anime.html.php | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/views/search/anime.html.php b/views/search/anime.html.php new file mode 100644 index 0000000..70a6315 --- /dev/null +++ b/views/search/anime.html.php @@ -0,0 +1,27 @@ + +<div class="container_12"> +<div class="grid_4"> +<h2> Search options </h2> +<hr /> +<?= $this->form->create(null, array('method' => 'get')); ?> + <?= $this->form->field('search', array('type' => 'textbox', 'class' => 'sidebar-search', 'style' => 'width:200px')); ?> + <?= $this->form->label('type', 'For:'); ?> + <?= $this->form->select('type', array('Anime' => 'Anime', + 'Manga' => 'Manga', + 'Kdrama' => 'Kdrama')); ?> + <?= $this->form->submit('Search', array('style' => 'width: 100px')); ?> +<?= $this->form->end(); ?> +</div> +<div class="grid_8"> +<h2>Search Results</h2> +<hr /> + <table class="table"> + <tr><th>img</th><th>Name</th><th>Episodes</th><th>Type</th><th>Score</th></tr> + <?php foreach($content as $item): ?> + <tr><td>"image"</td><td><a href="/anime/view/<?= $item->special_id ?>"><?= $item->title ?></a></td> <td><?= $item->episode_count ?></td><td><?= $item->view_type ?></td><td><?= $item->mal_score ?></td></tr> + <?php endforeach; ?> + </table> +<?=$this->Paginator->paginate(array('separator' => '', 'action' => 'index/anime')); ?> +</div> +<br class="cl"> +</div>
\ No newline at end of file |