#if($r.isNotNull($appointment))
$appointment.title #if($r.isNotEmpty($appointment.organizerNames)) $r.translate("organizer.with") #foreach($organizer in $appointment.organizerNames) $organizer#if($foreach.index < $appointment.organizerNames.size() - 1)$r.translate("organizer.separator")#end #end #end
$r.render("day")
#if($appointment.getDate() && $appointment.getDate() != "")
  $appointment.getDate()  $appointment.getTranslatedStatus()
#end #if($appointment.getDate2() && $appointment.getDate2() != "")
  $appointment.getDate2()
#end #if($appointment.getTime() && $appointment.getTime() != "")
  $appointment.getTime() #if($r.isNull($appointment.getDate()))  $appointment.getTranslatedStatus() #end
#end #if($appointment.getLocation() && $appointment.getLocation() != "")
  $r.escapeHtml($appointment.getLocation())
#end #if($appointment.getDetails() && $appointment.getDetails() != "")
  $r.escapeHtml($appointment.getDetails())
#end #if($r.isNotEmpty($appointment.participants))
#foreach($participant in $appointment.participants)  $participant   #end
#end
#else
$noAppointments
#end