Deployment preparation for testbed
diff --git a/templates/collections.html.ep b/templates/collections.html.ep
new file mode 100644
index 0000000..cab2ea2
--- /dev/null
+++ b/templates/collections.html.ep
@@ -0,0 +1,14 @@
+<h2>Virtual Collections</h2>
+<ul>
+% foreach my $vc (@{info_on 'collection'}) {
+<li class="active" title="<%= $vc->{description} // '' %>"><h3><%= $vc->{name} %></h3>
+% my $stats = $vc->{stats};
+ <dl class="info">
+ <dt>Documents</dt><dd><%= commify $stats->{documents} %></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>