{% extends "layout.html" %} {% set title = 'Personal details' %} {% block pageTitle %}{{ title }}{% endblock %} {% block beforeContent %} {% endblock %} {% block content %}

Search for a person on probation

{%- from "moj/components/search/macro.njk" import mojSearch -%} {{ mojSearch({ action: '#', method: 'post', input: { id: 'search', name: 'search' }, label: { text: 'Search', classes: 'govuk-!-font-weight-bold' }, hint: { text: 'Search for a person on probation using their name, date of birth, offender manager or crime reference number (CRN).' }, button: { text: 'Search' } }) }}

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: '

Charles Edwin

' }, { html: '

A00000

' }, { html: '

5 Jan 1980

' }, { html: '

Jim Hall

' }, { html: '

Moorland (HMP & YOI)

' }, { html: '

ORA adult custody (not PSS) 3 years

' }, { html: '

High

' } ], [ { html: '

Charles Edwards

' }, { html: '

A00001

' }, { html: '

25 Aug 1962

' }, { html: '

Judy Wick

' }, { html: '

HMP Swaleside

' }, { html: '

ORA adult custody (not PSS) 6 years

' } ], [ { html: '

David Ellery

' }, { html: '

A0003C

' }, { html: '

12 Jun 1992

' }, { html: '

Susan Ficus

' }, { html: '

Doncaster (HMP & YOI)

' }, { html: '

Community order 14 months

' }, { html: '

Low

' } ] ] }) }}
{% endblock %}