}
@Override
protected void populateItem(final ListItem item)
{
final Inscription inscription = (Inscription) item.getModelObject();
item.add(new Label("evenementNom", new PropertyModel(inscription
.getCourse().getEvenement(), "nom")));
item.add(new Label("endroit", new PropertyModel(inscription.getCourse()
.getEvenement(), "endroit")));
item.add(new Label("discipline", new PropertyModel(inscription
.getCourse().getDiscipline(), "nom")));
item.add(new Label("date", new PropertyModel(inscription.getCourse(),
"date")));
item.add(new Label("categorieNom", new PropertyModel(inscription
.getCategorie(), "nom")));
if (inscription.getClub() != null)
{
item.add(new Label("club", inscription.getClub().getNomComplet()));
}
else
{
item.add(new Label("club", ""));
}