Calendar: Fix invitation list when viewing event - refs BT#19393

pull/4102/head
Angel Fernando Quiroz Campos 4 years ago
parent 7a7f2e725b
commit 0f93099074
  1. 8
      main/template/default/agenda/month.tpl

@ -576,6 +576,10 @@ $(function() {
{% if agenda_collective_invitations and 'personal' == type %}
$('#form_invitees_edit')
.html(function () {
if (!calEvent.invitees) {
return '';
}
return calEvent.invitees
.map(function (invitee) { return invitee.name; })
.join('<br>');
@ -779,6 +783,10 @@ $(function() {
$("#simple_attachment").html(calEvent.attachment);
{% if agenda_collective_invitations and 'personal' == type %}
$('#simple_invitees').html(function () {
if (!calEvent.invitees) {
return '';
}
return calEvent.invitees
.map(function (invitee) { return invitee.name; })
.join('<br>');

Loading…
Cancel
Save