public ContextPanel(final String id)
{
super(id);
ProcessusInscription processusInscription = gestionProcessusInscription
.getProcessusInscription();
Saison saison = null;
Evenement evenement = null;
Course course = null;
if (processusInscription != null)
{
saison = gestionProcessusInscription.getProcessusInscription()
.getSaisonSelectionnee();
}
if (processusInscription != null)
{
evenement = gestionProcessusInscription.getProcessusInscription()
.getEvenementSelectionnee();
}
if (processusInscription != null)
{
course = processusInscription.getCourseSelectionnee();
}
this.add(new Label("personneAInscrire", new PropertyModel(
processusInscription.getPersonneAinscrire(), "nomPrenom")));
if (saison != null)
{
this.add(new Label("saison", new PropertyModel(saison, "nom")));
}