Not yet, unless you build your own error reporting pages. A new class has been added to ELMAH recently (post 1.0 BETA 2) that makes this super easy. See ErrorLogDataSourceAdapter:
http://elmah.googlecode.com/svn/trunk/src/Elmah/ErrorLogDataSourceAdapter.cs
Using this class, you can create new UI for ELMAH almost entirely declarative markup and data-binding. ErrorLogDataSourceAdapter has been designed to serve ObjectDataSource introduced with ASP.NET 2.0. You can then use any list- or table-oriented control to data-bind to an ObjectDataSource instance to display the error information the way you'd like to see it.
Hope this helps,
Atif