Nils Diewald | 2329e1d | 2014-06-12 16:07:57 +0000 | [diff] [blame] | 1 | <h2>Virtual Collections</h2> |
| 2 | <ul> |
Nils Diewald | 1eba657 | 2014-06-17 19:49:53 +0000 | [diff] [blame] | 3 | % foreach my $vc (@{resource_info('collection')}) { |
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 | 3663013 | 2014-11-07 03:52:00 +0000 | [diff] [blame] | 15 | % if (stash('test_port')) { |
Nils Diewald | 1d2903f | 2014-11-03 22:31:20 +0000 | [diff] [blame] | 16 | <p style="font-size: 9pt; padding-left: 1em">Index port: <%= $c->url_for($c->config('KorAP')->{'api-0.1'})->port %></p> |
Nils Diewald | 3663013 | 2014-11-07 03:52:00 +0000 | [diff] [blame] | 17 | % }; |