boolean contentEditable = isContentEditable(panel, (CalendarVO)attributes.get("calendar"), request);
if(contentEditable) {
panel.addAction(Action.Type.DELETE, "/calendar/event/delete");
}
panel.addAction(Action.Type.SAVE, "/calendar/event/save");
panel.addPage("STANDARD", "/calendar/event/pageStandard", "module.generic.panel.tab.standard", true, contentEditable ? null : Boolean.FALSE);
panel.addPage("PARTICIPIANTS", "/calendar/event/pageParticipiants", "module.calendar.event.pageParticpiants", true, contentEditable ? null : Boolean.FALSE);
panel.addPage("RECURRENCE", "/calendar/event/pageRecurrence", "module.calendar.event.pageRecurrence", true, contentEditable ? null : Boolean.FALSE);
panel.addPage("SYSTEM", "/calendar/event/pageSystem", "module.generic.panel.tab.system");