Fix max nb of attendees reached

This commit is contained in:
Laurent Destailleur 2022-10-20 19:26:24 +02:00
parent 2d378ecede
commit 84d47e9b0c
4 changed files with 8 additions and 4 deletions

View File

@ -122,7 +122,7 @@ ViewAndVote = View and vote for suggested events
PublicAttendeeSubscriptionGlobalPage = Public link for registration to the event
PublicAttendeeSubscriptionPage = Public link for registration to this event only
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.
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
@ -132,7 +132,7 @@ LabelOfconference=Conference label
ConferenceIsNotConfirmed=Registration not available, conference is not confirmed yet
DateMustBeBeforeThan=%s must be before %s
DateMustBeAfterThan=%s must be after %s
MaxNbOfAttendeesReached=The maximum number of participants has been reached
NewSubscription=Registration
OrganizationEventConfRequestWasReceived=Your suggestion for a conference has been received
OrganizationEventBoothRequestWasReceived=Your request for a booth has been received

View File

@ -645,11 +645,13 @@ print load_fiche_titre($langs->trans("NewRegistration"), '', '', 0, 0, 'center')
print '<div align="center">';
print '<div id="divsubscribe">';
print '<div class="center subscriptionformhelptext justify">';
print '<div class="center subscriptionformhelptext">';
// 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>';
$maxattendees = 0;
if ($conference->id > 0) {

View File

@ -4837,6 +4837,7 @@ input#cardholder-name {
.divmainbodylarge { margin-left: 40px; margin-right: 40px; }
.publicnewmemberform div.titre { font-size: 2em; }
#divsubscribe { max-width: 900px; }
#divsubscribe .eventlabel { font-size: 1.5em; }
#tablesubscribe { width: 100%; }
#tablesubscribe tr td { font-size: 1.15em; }
#tablesubscribe .price-registration { font-size: 1.5em; }

View File

@ -4686,6 +4686,7 @@ span.buttonpaymentsmall {
.divmainbodylarge { margin-left: 40px; margin-right: 40px; }
.publicnewmemberform div.titre { font-size: 2em; }
#divsubscribe { max-width: 900px; }
#divsubscribe .eventlabel { font-size: 1.5em; }
#tablesubscribe { width: 100%; }
#tablesubscribe tr td { font-size: 1.15em; }
#tablesubscribe .price-registration { font-size: 1.5em; }