blob: 046a3a81e62057cd7f5de153eabd71954db00378 [file] [log] [blame]
<h2>Virtual Collections</h2>
<ul>
% foreach my $vc (@{resource_info('collection')}) {
<li class="active" title="<%= $vc->{description} // '' %>"><h3><%= $vc->{name} %></h3>
% my $stats = $vc->{statistics};
<dl class="info">
<dt>Texts</dt> <dd><%= commify($stats->{documents} // $stats->{texts}) %></dd>
<dt>Paragraphs</dt> <dd><%= commify $stats->{paragraphs} %></dd>
<dt>Sentences</dt> <dd><%= commify $stats->{sentences} %></dd>
<dt>Tokens</dt> <dd><%= commify $stats->{tokens} %></dd>
</dl>
</li>
% };
</ul>