applications/app/views/fragments/crosswords/accessibleCrosswordContent.scala.html
@crosswordMetaHeader(crosswordPage, gridVisible = false)
Note: We've recently added solutions to this page below.
This page provides a text-only description of the puzzle:
@accessibleCrosswordGridData(crosswordPage.blankSquares.rows)
@accessibleCrosswordEntries(crosswordPage.crossword.acrossEntries)
@accessibleCrosswordEntries(crosswordPage.crossword.downEntries)
@if(crosswordPage.crossword.solutionAvailable) { Reveal solutions
| Starting position | Clue | Solution |
|---|---|---|
| @for(entry <- crosswordPage.crossword.acrossEntries) { | @entry.startPosition | @Html(entry.clue) |
| } |
| Starting position | Clue | Solution |
|---|---|---|
| @for(entry <- crosswordPage.crossword.downEntries) { | @entry.startPosition | @Html(entry.clue) |
| } |
} else {
Sorry, solutions are not available for this puzzle yet. @crosswordPage.crossword.dateSolutionAvailable.map(solutionDate => s" They should be available from ${GUDateTimeFormatNew.formatDateForDisplay(solutionDate, request)}.")
}