fixes #415
fixes issue where the number of events are not displaying correctly
This commit is contained in:
parent
97c461cd04
commit
099ab7d2ff
|
|
@ -32,7 +32,7 @@ return array (
|
|||
'n_attendees_for_event' => '<b>:num</b> Attendee(s) for event: <b>:name</b> (:date)',
|
||||
'no_events_yet' => 'No Event Yet!',
|
||||
'no_events_yet_text' => 'Looks like you have yet to create an event. You can create one by clicking the button below.',
|
||||
'num_events' => 'num_events',
|
||||
'num_events' => ':num Events',
|
||||
'or(manual/existing_venue)' => 'or',
|
||||
'post_code' => 'Post Code',
|
||||
'post_code_placeholder' => 'E.g: 94568.',
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@
|
|||
<div class="col-md-3 col-xs-6">
|
||||
<div class="order_options">
|
||||
<span class="event_count">
|
||||
@lang("Event.num_events", ["num"=>$organiser->events->count()])
|
||||
@lang("Event.num_events", ["num" => $organiser->events->count()])
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue