/**
  * Lists all Athlete entities.
  *
  * @Route("/", name="club_athlete")
  * @Method("GET")
  * @Template()
  */
 public function indexAction(Club $club)
 {
     $athletes = $club->getAthletes();
     return array('club' => $club, 'athletes' => $athletes);
 }