Search results
{%- from "govuk/components/table/macro.njk" import govukTable -%} {{ govukTable({ attributes: { 'data-module': 'moj-sortable-table' }, head: [ { text: "Name", attributes: { "aria-sort": "ascending" } }, { text: "Crime reference number (CRN)", attributes: { "aria-sort": "none" } }, { text: "Date of birth", attributes: { "aria-sort": "none" } }, { text: "Offender manager", attributes: { "aria-sort": "none" } }, { text: "Geographical area", attributes: { "aria-sort": "none" } }, { text: "Sentence type and length", attributes: { "aria-sort": "none" } }, { text: "Risk of serious harm", attributes: { "aria-sort": "none" } } ], rows: [ [ { html: '' }, { html: 'A00000
' }, { html: '5 Jan 1980
' }, { html: 'Jim Hall
' }, { html: 'Moorland (HMP & YOI)
' }, { html: 'ORA adult custody (not PSS) 3 years
' }, { html: 'High
' } ], [ { html: '' }, { html: 'A00001
' }, { html: '25 Aug 1962
' }, { html: 'Judy Wick
' }, { html: 'HMP Swaleside
' }, { html: 'ORA adult custody (not PSS) 6 years
' } ], [ { html: '' }, { html: 'A0003C
' }, { html: '12 Jun 1992
' }, { html: 'Susan Ficus
' }, { html: 'Doncaster (HMP & YOI)
' }, { html: 'Community order 14 months
' }, { html: 'Low
' } ] ] }) }}