Nils Diewald | 2329e1d | 2014-06-12 16:07:57 +0000 | [diff] [blame] | 1 | <h2>Virtual Collections</h2> |
| 2 | <ul> |
Nils Diewald | 8f4b5da | 2014-12-03 22:13:39 +0000 | [diff] [blame] | 3 | % foreach my $vc (@{stash('search.resource') // []}) { |
Nils Diewald | 44a7278 | 2014-06-20 16:03:21 +0000 | [diff] [blame] | 4 | <li class="active" title="<%= $vc->{description} // '' %>"><h3><%= $vc->{name} %></h3> |
Nils Diewald | 4e9fbcb | 2014-07-15 11:45:09 +0000 | [diff] [blame] | 5 | % my $stats = $vc->{statistics}; |
Nils Diewald | 44a7278 | 2014-06-20 16:03:21 +0000 | [diff] [blame] | 6 | <dl class="info"> |
Nils Diewald | 13bad6a | 2014-07-18 16:44:51 +0000 | [diff] [blame] | 7 | <dt>Texts</dt> <dd><%= commify($stats->{documents} // $stats->{texts}) %></dd> |
Nils Diewald | 44a7278 | 2014-06-20 16:03:21 +0000 | [diff] [blame] | 8 | <dt>Paragraphs</dt> <dd><%= commify $stats->{paragraphs} %></dd> |
| 9 | <dt>Sentences</dt> <dd><%= commify $stats->{sentences} %></dd> |
| 10 | <dt>Tokens</dt> <dd><%= commify $stats->{tokens} %></dd> |
| 11 | </dl> |
| 12 | </li> |
Nils Diewald | 2329e1d | 2014-06-12 16:07:57 +0000 | [diff] [blame] | 13 | % }; |
| 14 | </ul> |
Nils Diewald | 2fe12e1 | 2015-03-06 16:47:06 +0000 | [diff] [blame^] | 15 | % if (kalamar_test_port()) { |
| 16 | <p style="font-size: 9pt; padding-left: 1em">Index port: <%= $c->url_for($c->config('Kalamar')->{'api-0.1'})->port %></p> |
Nils Diewald | 3663013 | 2014-11-07 03:52:00 +0000 | [diff] [blame] | 17 | % }; |