@(collection_id: String, previews: List[Preview], previewers: List[Previewer])
@main("Collection Previews") {
Previews available for this collection
@for(p <- previews) {
- Preview type: @p.preview_type.get (preview id: @p.id)
}
@if(previews.size == 0) {
No previews currently associated with this collection
}
Previewers available for this collection
@for(p <- previewers; supported <- p.supportedPreviews) {
-
Supported Type: @supported (Previewer: @p.id)
}
}