diff --git a/htdocs/eventorganization/conferenceorbooth_list.php b/htdocs/eventorganization/conferenceorbooth_list.php
index 814a61ae894..feb202de663 100644
--- a/htdocs/eventorganization/conferenceorbooth_list.php
+++ b/htdocs/eventorganization/conferenceorbooth_list.php
@@ -39,6 +39,8 @@ if ($conf->categorie->enabled) {
// Load translation files required by the page
$langs->loadLangs(array("eventorganization", "other"));
+global $dolibarr_main_url_root, $dolibarr_main_instance_unique_id;
+
$action = GETPOST('action', 'aZ09') ?GETPOST('action', 'aZ09') : 'view'; // The action 'add', 'create', 'edit', 'update', 'view', ...
$massaction = GETPOST('massaction', 'alpha'); // The bulk action (combo box choice into lists)
$show_files = GETPOST('show_files', 'int'); // Show files area generated by bulk actions ?
@@ -360,6 +362,15 @@ if ($projectid > 0) {
}
print '';
+ // Link to the vote/register page
+ print '
| '.$langs->trans("RegisterPage").' | ';
+ $encodedid = dol_encode($project->id, $dolibarr_main_instance_unique_id);
+ $linkregister = $dolibarr_main_url_root.'/public/project/index.php?id='.$encodedid;
+ $encodedsecurekey = dol_encode($conf->global->EVENTORGANIZATION_SECUREKEY.$encodedid, $dolibarr_main_instance_unique_id);
+ $linkregister .= '&securekey='.urlencode($encodedsecurekey);
+ print ''.$linkregister.'';
+ print ' |
';
+
// Other attributes
$cols = 2;
$objectconf=$object;
diff --git a/htdocs/langs/en_US/eventorganization.lang b/htdocs/langs/en_US/eventorganization.lang
index 037a74076fe..157fc1c8a99 100644
--- a/htdocs/langs/en_US/eventorganization.lang
+++ b/htdocs/langs/en_US/eventorganization.lang
@@ -96,6 +96,7 @@ EvntOrgCancelled = Cancelled
#
# Public page
#
+RegisterPage = Page for conferences or booth
PublicAttendeeSubscriptionPage = Public link of registration to a conference
MissingOrBadSecureKey = The security key is invalid or missing
EvntOrgWelcomeMessage = This form allows you to register as a new participant to the conference
@@ -110,4 +111,4 @@ SubscriptionOk = Your subscription to this conference has been validated
# Payment page
#
Attendee = Participant
-PaymentConferenceAttendee = Paiement de participation à une conférence
\ No newline at end of file
+PaymentConferenceAttendee = Paiement de participation à une conférence