Fix max nb of attendees reached
This commit is contained in:
parent
2d378ecede
commit
84d47e9b0c
@ -122,7 +122,7 @@ ViewAndVote = View and vote for suggested events
|
|||||||
PublicAttendeeSubscriptionGlobalPage = Public link for registration to the event
|
PublicAttendeeSubscriptionGlobalPage = Public link for registration to the event
|
||||||
PublicAttendeeSubscriptionPage = Public link for registration to this event only
|
PublicAttendeeSubscriptionPage = Public link for registration to this event only
|
||||||
MissingOrBadSecureKey = The security key is invalid or missing
|
MissingOrBadSecureKey = The security key is invalid or missing
|
||||||
EvntOrgWelcomeMessage = This form allows you to register as a new participant to the event : <b>%s</b>
|
EvntOrgWelcomeMessage = This form allows you to register as a new participant to the event
|
||||||
EvntOrgDuration = This conference starts on %s and ends on %s.
|
EvntOrgDuration = This conference starts on %s and ends on %s.
|
||||||
ConferenceAttendeeFee = Conference attendee fee for the event : '%s' occurring from %s to %s.
|
ConferenceAttendeeFee = Conference attendee fee for the event : '%s' occurring from %s to %s.
|
||||||
BoothLocationFee = Booth location for the event : '%s' occurring from %s to %s
|
BoothLocationFee = Booth location for the event : '%s' occurring from %s to %s
|
||||||
@ -132,7 +132,7 @@ LabelOfconference=Conference label
|
|||||||
ConferenceIsNotConfirmed=Registration not available, conference is not confirmed yet
|
ConferenceIsNotConfirmed=Registration not available, conference is not confirmed yet
|
||||||
DateMustBeBeforeThan=%s must be before %s
|
DateMustBeBeforeThan=%s must be before %s
|
||||||
DateMustBeAfterThan=%s must be after %s
|
DateMustBeAfterThan=%s must be after %s
|
||||||
|
MaxNbOfAttendeesReached=The maximum number of participants has been reached
|
||||||
NewSubscription=Registration
|
NewSubscription=Registration
|
||||||
OrganizationEventConfRequestWasReceived=Your suggestion for a conference has been received
|
OrganizationEventConfRequestWasReceived=Your suggestion for a conference has been received
|
||||||
OrganizationEventBoothRequestWasReceived=Your request for a booth has been received
|
OrganizationEventBoothRequestWasReceived=Your request for a booth has been received
|
||||||
|
|||||||
@ -645,11 +645,13 @@ print load_fiche_titre($langs->trans("NewRegistration"), '', '', 0, 0, 'center')
|
|||||||
|
|
||||||
print '<div align="center">';
|
print '<div align="center">';
|
||||||
print '<div id="divsubscribe">';
|
print '<div id="divsubscribe">';
|
||||||
print '<div class="center subscriptionformhelptext justify">';
|
print '<div class="center subscriptionformhelptext">';
|
||||||
|
|
||||||
// Welcome message
|
// Welcome message
|
||||||
|
|
||||||
print $langs->trans("EvntOrgWelcomeMessage", $project->title . ' '. $conference->label);
|
print $langs->trans("EvntOrgWelcomeMessage");
|
||||||
|
print '<br>';
|
||||||
|
print '<span class="eventlabel">'.$project->title . ' '. $conference->label.'</span>';
|
||||||
print '<br>';
|
print '<br>';
|
||||||
$maxattendees = 0;
|
$maxattendees = 0;
|
||||||
if ($conference->id > 0) {
|
if ($conference->id > 0) {
|
||||||
|
|||||||
@ -4837,6 +4837,7 @@ input#cardholder-name {
|
|||||||
.divmainbodylarge { margin-left: 40px; margin-right: 40px; }
|
.divmainbodylarge { margin-left: 40px; margin-right: 40px; }
|
||||||
.publicnewmemberform div.titre { font-size: 2em; }
|
.publicnewmemberform div.titre { font-size: 2em; }
|
||||||
#divsubscribe { max-width: 900px; }
|
#divsubscribe { max-width: 900px; }
|
||||||
|
#divsubscribe .eventlabel { font-size: 1.5em; }
|
||||||
#tablesubscribe { width: 100%; }
|
#tablesubscribe { width: 100%; }
|
||||||
#tablesubscribe tr td { font-size: 1.15em; }
|
#tablesubscribe tr td { font-size: 1.15em; }
|
||||||
#tablesubscribe .price-registration { font-size: 1.5em; }
|
#tablesubscribe .price-registration { font-size: 1.5em; }
|
||||||
|
|||||||
@ -4686,6 +4686,7 @@ span.buttonpaymentsmall {
|
|||||||
.divmainbodylarge { margin-left: 40px; margin-right: 40px; }
|
.divmainbodylarge { margin-left: 40px; margin-right: 40px; }
|
||||||
.publicnewmemberform div.titre { font-size: 2em; }
|
.publicnewmemberform div.titre { font-size: 2em; }
|
||||||
#divsubscribe { max-width: 900px; }
|
#divsubscribe { max-width: 900px; }
|
||||||
|
#divsubscribe .eventlabel { font-size: 1.5em; }
|
||||||
#tablesubscribe { width: 100%; }
|
#tablesubscribe { width: 100%; }
|
||||||
#tablesubscribe tr td { font-size: 1.15em; }
|
#tablesubscribe tr td { font-size: 1.15em; }
|
||||||
#tablesubscribe .price-registration { font-size: 1.5em; }
|
#tablesubscribe .price-registration { font-size: 1.5em; }
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user