From 2389d66da849798f8d4ec5f10e3b07c11da49185 Mon Sep 17 00:00:00 2001 From: Michael Francis Date: Sat, 28 May 2011 13:28:16 -0400 Subject: Initial Commit --- views/Anime_list/view.html.php | 84 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 views/Anime_list/view.html.php (limited to 'views/Anime_list/view.html.php') diff --git a/views/Anime_list/view.html.php b/views/Anime_list/view.html.php new file mode 100644 index 0000000..2dec697 --- /dev/null +++ b/views/Anime_list/view.html.php @@ -0,0 +1,84 @@ +

username ?>'s AnimeList

+
+
+ + + + + + + +
html->link("Completed", "#finished", array('class' => 'anchorLink')); ?> html->link("Watching", "#watching", array('class' => 'anchorLink')); ?> html->link("Plans to Watch", "#planning", array('class' => 'anchorLink')); ?> html->link("On-Hold", "#paused", array('class' => 'anchorLink')); ?> html->link("Dropped", "#dropped", array('class' => 'anchorLink')); ?>
+'; +echo "Entry #Anime TitleScoreTypeProgress"; +$i = 1; +foreach ($input as $anime) { + echo ''; + echo " $i "; + echo " series_animedb_id/\">$anime->series_title "; + echo ""; + echo ($anime->my_score != 0) ? $anime->my_score : "-"; + echo ""; + echo " $anime->series_type "; + echo ""; + echo $anime->my_watched_episodes; + echo "/"; + echo ($anime->series_episodes != 0) ? $anime->series_episodes : "-"; + echo ""; + echo ""; +$i += 1; +} +echo ""; +} +?> + +
+
+ +

Watching

+
+
+
+
+ +
+
+ + + + + + +

Finished Animes

+
+
+ + + + + +

Plans to Watch

+
+
+ + + + + +

Paused

+
+
+ + + + + + + +

Dropped

+
+
+ + + \ No newline at end of file -- cgit v1.2.3