form->config(array('templates' => array(
'error' => '
{:content}
')));
$this->styles($this->html->style('jquery.tagsinput.css'));
$this->scripts($this->html->script('jquery.tagsinput.min.js'));
?>
= $anime->title ?>
scripts(ob_get_clean()); ?>
form->create($entry);
echo $this->form->hidden('series_animedb_id', array('value' => $anime->special_id));
echo $this->form->field('episodes', array('label' => 'Watched Episodes'));
echo $this->form->field('score', array('label' => 'Score'));
echo $this->form->label('status', 'Status');
echo $this->form->select('status', array('Plan to Watch' => 'Plan to Watch',
'On-Hold' => 'On-Hold',
'Completed' => 'Completed',
'Watching' => 'Watching',
'Dropped' => 'Dropped'));
echo $this->form->field('tags', array('type' => 'textarea', 'id' => 'tags'));
echo $this->form->submit('Save!');
echo $this->form->end();
?>