diff --git a/htdocs/eventorganization/tpl/linkedobjectblock.tpl.php b/htdocs/eventorganization/tpl/linkedobjectblock.tpl.php
index f67e086a575..f2bb6f0c3ae 100644
--- a/htdocs/eventorganization/tpl/linkedobjectblock.tpl.php
+++ b/htdocs/eventorganization/tpl/linkedobjectblock.tpl.php
@@ -36,10 +36,24 @@ foreach ($linkedObjectBlock as $key => $objectlink) {
echo '
';
echo '| ' . $langs->trans(get_class($objectlink)) . ' | ';
echo ''.$objectlink->getNomUrl(1).' | ';
- echo ' | ';
- echo ' | ';
- echo ' | ';
- echo ' | ';
+ echo '';
+ if (get_class($objectlink)=='ConferenceOrBooth') {
+ print dol_trunc($objectlink->label, 20);
+ }
+ print ' | ';
+ echo '';
+ if (get_class($objectlink)=='ConferenceOrBoothAttendee') {
+ print dol_print_date($objectlink->date_subscription);
+ } else {
+ print dol_print_date($objectlink->datep);
+ }
+ print ' | ';
+ echo '';
+ if (get_class($objectlink)=='ConferenceOrBoothAttendee') {
+ print price($objectlink->amount);
+ }
+ print ' | ';
+ echo ''.$objectlink->getLibStatut(3).' | ';
echo 'id.'&action=dellink&dellinkid='.$key.'">'.img_picto($langs->transnoentitiesnoconv("RemoveLink"), 'unlink').' | ';
echo '
';
}