This may work for you. It works for our Aruba controllers with thin APs. Create an Advanced SQL report in Report Writer. Add this SQL. Set ParentID and Available fields in Field formatting to Hidden and set Status format to Icon and Icon type to Status. Then, go to Web console and add 'Report from Report Writer' resource to Summary page, click Edit and select the report name you gave to this report.
SELECT
ap.NodeID as NodeID
,ap.ParentID as ParentID
,ap.Available as Available
,CASE ap.Status
WHEN '0' THEN 'Unknown.gif'
WHEN '1' THEN 'Up.gif'
WHEN '2' THEN 'Down.gif'
END AS Status
,ap.Name as Name
,ap.IPAddress as IPAddress
,wc.Name as Controller
FROM [NetPerfMon1].[dbo].[Wireless_AccessPoints_View] ap
INNER JOIN [NetPerfMon1].[dbo].Wireless_Controllers as wc ON wc.ID = ap.ParentID
WHERE ap.Available = 0
ORDER BY ap.Name ASC