/**
  * @param Request $Request
  * @return mixed
  */
 public function renderAthletes(Request $Request)
 {
     $year = $Request->get('season');
     if (!$year) {
         $CurrentSeason = new CurrentSeason();
         $year = $CurrentSeason->getEndYear();
     }
     $Season = new Season($year);
     return $this->App['twig']->render('Track/athletes.twig', array('selectedSeason' => $year, 'firstSeason' => $this->MeetService->getFirstSeasonYear(), 'currentSeason' => $this->App['service.currentSeason']->getEndYear(), 'athletes' => $this->MeetService->getAthletesBySeason($Season)));
 }