diff options
author | raylu <raylu@mixpanel.com> | 2011-07-02 17:02:07 -0700 |
---|---|---|
committer | raylu <raylu@mixpanel.com> | 2011-07-02 17:02:07 -0700 |
commit | 05a2b26d9038752a40348a3f226e44710833c49b (patch) | |
tree | 9bc3e49ac2e84b33ca5ff6e44eb7e5f2c02d13bf /views/anime_list | |
parent | 83483a1826d1d05e2f9733746f35fef1939b8c0a (diff) | |
download | otakuhub-05a2b26d9038752a40348a3f226e44710833c49b.tar.xz |
pull in dev branch changes
not pulled: swiftmailer, gzip
Diffstat (limited to 'views/anime_list')
-rw-r--r-- | views/anime_list/add.html.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/views/anime_list/add.html.php b/views/anime_list/add.html.php index 2e93ffd..de3da9c 100644 --- a/views/anime_list/add.html.php +++ b/views/anime_list/add.html.php @@ -3,11 +3,11 @@ <?php if (empty($anime)): ?> <h2 class="ribbon full">Find an Anime:</h2> <div class="triangle-ribbon"></div> -<br class="clear" /> +<br class="cl" /> <?php else: ?> <h2 class="ribbon full"><?= $anime->title ?></h2> <div class="triangle-ribbon"></div> -<br class="clear" /> +<br class="cl" /> <?php endif; ?> <script type="text/javascript"> @@ -30,6 +30,7 @@ } echo $this->form->field('my_watched_episodes', array('label' => 'Watched Episodes')); + echo "Start date"; echo $this->form->field('my_start_date', array('label' => 'Start Date')); echo $this->form->field('my_finish_date', array('label' => 'Finish Date')); echo $this->form->field('my_score', array('label' => 'Score')); @@ -46,4 +47,5 @@ echo $this->form->field('tags', array('type' => 'textarea', 'id' => 'tags')); echo $this->form->checkbox('rewatching', array('label' =>'Rewatching?', 'value' => false)); echo $this->form->submit('Save!'); -?>
\ No newline at end of file + echo $this->form->end(); +?> |