skip CouchDB _design documents
[MojoFacets.git] / templates / debug / index.html.ep
1 % layout 'default';
2
3 <h1>$loaded</h1>
4 <ul>
5 % foreach my $path ( keys %$loaded ) {
6 <li><%= $path %>
7 <tt class=bytes><%= $self->_ref_size( $loaded->{$path} ) %></tt>
8 %  foreach my $k ( keys %{ $loaded->{$path} } ) {
9 <pre class=debug><a href="/debug/loaded/<%= $k %>"><%= $k %></a> <%= " => " . dumper $loaded->{$path}->{$k} %></pre>
10 %  }
11 </li>
12 % }
13 </ul>
14
15 <a href="/debug">debug</a>