news - AEROPORTI DI ROMA

Fiumicino, 18 July 2016 – The company Aeroporti di Roma immediately imposed the maximum financial penalty on handling company Aviapartner for its methods of managing the Iberia flight, bound for Vigo, the images of which were reported by certain news sites.
The handler, having moved the aircraft, which was pushed by the aircraft’s staff instead of by using its own means (push-back), was in fact responsible for breaching the procedures provided for by the airport regulations for moving aircraft and vehicles within the "airside" area.
Aeroporti di Roma, a member of the Atlantia Group, manages and develops the airports of Rome Fiumicino and Ciampino and performs other activities related and complementary to airport management. Fiumicino operates through four passenger terminals. It is dedicated to business and leisure customers for domestic, international and intercontinental travel; Ciampino airport is mainly used by low-cost airlines, by express couriers, and for General Aviation activities. In 2015 ADR recorded, as an airport system, over 46 million passengers with 240 worldwide destinations reachable from Rome, thanks to about 100 airlines operating at the two airports.
External Relations and Institutional Affairs
Press office and new media
+39 3355766591
+39 3382098246
+39 3451283176
+39 3351753281
Java method "com.liferay.portal.kernel.theme.NavItem.hasBrowsableChildren()" threw an exception when invoked on com.liferay.portal.kernel.theme.NavItem object "com.liferay.portal.kernel.theme.NavItem@6bdce2"; see cause exception in the Java stack trace. ---- FTL stack trace ("~" means nesting-related): - Failed at: #if navItem.hasBrowsableChildren() [in template "10132#10165#21281541" in macro "buildNavigation" at line 25, column 5] - Reached through: @buildNavigation navItem=navigationEn... [in template "10132#10165#21281541" at line 5, column 7] ----
1<#if entries?has_content>
2 <div class="leftmenu">
3 <ul class="whitebg-menu nav nav-nested w-100">
4 <#list entries as navigationEntry>
5 <@buildNavigation navItem=navigationEntry navCssClass=""/>
6 </#list>
7 </ul>
8 </div>
9</#if>
10
11<#macro buildNavigation navItem navCssClass>
12 <#assign
13 nav_item_css_class = "nav-link"
14 nav_item_layout = navItem.getLayout()
15 nav_item_href = navItem.getURL()
16 nav_item_id = "nav" + navItem.getLayoutId()
17 nav_item_title = navItem.getName()
18 />
19 <#if navItem.isSelected() || navItem.isChildSelected() >
20 <#assign
21 nav_item_css_class = nav_item_css_class + " selected"
22 />
23 </#if>
24 <li class="${nav_item_css_class}">
25 <#if navItem.hasBrowsableChildren()>
26 <#assign nav_collapse_id = "navCollapse" + nav_item_id/>
27 <a aria-controls="${nav_collapse_id}" aria-expanded="true" class="collapse-icon ${nav_item_css_class}" href="${nav_item_href}" role="button">
28 ${nav_item_title}
29 <span class="collapse-icon-closed icon-chevron-right"></span>
30 <span class="collapse-icon-open icon-chevron-down"></span>
31 </a>
32 <#assign childNavigationClass="collapse" />
33 <#if navItem.isSelected()|| navItem.isChildSelected()>
34 <#assign childNavigationClass="collapse show" />
35 </#if>
36 <div class="${childNavigationClass}" id="${nav_collapse_id}" style="">
37 <ul class="nav nav-stacked">
38 <#list navItem.getChildren() as navChild>
39 <@buildNavigation navItem=navChild navCssClass="" />
40 </#list>
41 </u>
42 </div>
43 <#else>
44 <a class="${nav_item_css_class} child-item" href="${nav_item_href}">
45 <span class="navbar-text-truncate">${nav_item_title}</span>
46 </a>
47 </#if>
48 </li>
49</#macro>