/**
  * @Route("/")
  * @Method({"GET"})
  */
 public function indexAction()
 {
     return parent::listingAction();
 }
 /**
  *
  * @Route("/")
  * @Method({"GET"})
  */
 public function indexAction()
 {
     $breadcrumbs = array(array('name' => get_lang('Curriculum'), 'url' => array('route' => 'curriculum_user.controller:indexAction', 'routeParameters' => array('course' => $this->getCourse()->getCode()))), array('name' => get_lang('Categories'), 'url' => array('route' => 'curriculum_category.controller:indexAction', 'routeParameters' => array('course' => $this->getCourse()->getCode()))), array('name' => get_lang('List')));
     $this->setBreadcrumb($breadcrumbs);
     return parent::listingAction();
 }