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/add.html.php | 33 ++++++++++++++++ views/Anime_list/index.html | 3 ++ views/Anime_list/index.html.php | 74 ++++++++++++++++++++++++++++++++++++ views/Anime_list/view.html.php | 84 +++++++++++++++++++++++++++++++++++++++++ 4 files changed, 194 insertions(+) create mode 100644 views/Anime_list/add.html.php create mode 100644 views/Anime_list/index.html create mode 100644 views/Anime_list/index.html.php create mode 100644 views/Anime_list/view.html.php (limited to 'views/Anime_list') diff --git a/views/Anime_list/add.html.php b/views/Anime_list/add.html.php new file mode 100644 index 0000000..5e9699a --- /dev/null +++ b/views/Anime_list/add.html.php @@ -0,0 +1,33 @@ + +

Anime not found

+ +

series_title ?>

+form->create($entry); + echo $this->form->hidden('series_animedb_id', array('value' => $anime->special_id)); + /* + + TV + 26 + */ + + echo $this->form->field('my_watched_episodes', array('label' => 'Watched Episodes')); + echo $this->form->field('my_start_date', array('label' => 'Start Date')); + echo $this->form->field('my_finish_date', array('label' => 'Finish Date')); + //Make this Ajax in the future, but it will have to be removed + //If we partner with CR or otherwise + //echo $this->form->field('my_fansub_group', ); + echo $this->form->field('my_score', array('label' => 'Score')); + //echo $this->form->field() // + // + echo $this->form->label('my_status', 'Status'); + echo $this->form->select('my_status', array('Plan to Watch', 'On-Hold', 'Completed', 'Watching'), array('value' => 0)); //Plan to Watch + echo $this->form->field('my_comments', array('label' => 'Comments')); + echo $this->form->field('my_times_watched', array('label' => 'Times Watched')); + echo $this->form->label('rewatch_value', 'Rewatch Value'); + echo $this->form->select('rewatch_value', array('High', 'Medium', 'Low', 'None'), array('value' => 0)); + echo $this->form->field('tags', array('type' => 'textarea')); + echo $this->form->field('rewatching', array('value' => false)); + echo $this->form->submit('Save!'); +?> + \ No newline at end of file diff --git a/views/Anime_list/index.html b/views/Anime_list/index.html new file mode 100644 index 0000000..ad9911a --- /dev/null +++ b/views/Anime_list/index.html @@ -0,0 +1,3 @@ +

username ?>'s AnimeList

+ + \ No newline at end of file diff --git a/views/Anime_list/index.html.php b/views/Anime_list/index.html.php new file mode 100644 index 0000000..abe931b --- /dev/null +++ b/views/Anime_list/index.html.php @@ -0,0 +1,74 @@ +

username ?>'s AnimeList

+
+html->link("Completed", "/animelist/view/$user->username/completed"); ?>
+ + +

Watching

+ + + + + + + + +

Finished Animes

+
+
+ + + + + +

Plans to Watch

+
+
+ + + + + +

Paused

+
+
+ + + + + + + +

Dropped

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