From 83483a1826d1d05e2f9733746f35fef1939b8c0a Mon Sep 17 00:00:00 2001 From: raylu Date: Sat, 2 Jul 2011 16:51:32 -0700 Subject: lowercase --- 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..4c552d8 --- /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