/**
  * Deletes chronicle (but not the Event) of you have the privileges
  *
  * @Privilege("delete")
  *
  * @param int $id               Event ID
  */
 public function handleDelete($id)
 {
     $this->events->deleteChronicle($id);
     $this->flashMessage("Kronika byla vymazána");
     $this->redirect('Chronicle:');
 }