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

CRN: A000000 Charles Edwin

{% set keyDetails %} {{ govukSummaryList({ rows: [ { key: { text: 'Gender' }, value: { html: 'Male' } }, { key: { html: 'Date of birth' }, value: { html: '28 July 1980 (Age 41)' } }, { key: { html: 'Current address' }, value: { html: '123 Any Street, Abingdon OX14 2DR' } }, { key: { html: 'Alias' }, value: { html: 'None Known' } }, { key: { text: 'Offender manager' }, value: { text: 'Jane Smith - HAR PS1, NPS London' } } ] }) }} {% endset %} {{ appSummaryCard({ titleText: 'Personal Details', classes: 'govuk-!-margin-bottom-6 app-summary-card--large-title', html: keyDetails }) }}
{% from "govuk/components/tabs/macro.njk" import govukTabs %} {% from "govuk/components/table/macro.njk" import govukTable %} {% set licenceOverview %}

Licence Overview

{% from "govuk/components/summary-list/macro.njk" import govukSummaryList %} {{ govukSummaryList({ rows: [ { key: { text: "Index offence" }, value: { text: "Robbery and assaults with intent to rob - 034" } }, { key: { text: "Order" }, value: { text: "ORA Adult Custody (not PSS)" } }, { key: { text: "Length" }, value: { text: "3 years" } }, { key: { text: "Start date" }, value: { text: "01 September 2020" } }, { key: { text: "Expected End Date" }, value: { text: "31 August 2022 " } }, { key: { text: "Release to Community Date" }, value: { text: "01 September 2021" } }, { key: { text: "Time left on probation" }, value: { text: "2 years" } }, { key: { text: "Amount of sentence already served" }, value: { text: "1 year" } }, { key: { text: "Amount of sentence served in custody" }, value: { text: "9 months" } }, { key: { text: "Amount of sentence served in community" }, value: { text: "3 months" } } ] }) }} {% endset -%} {% set offenceOverview %}

Offence Overview

{% from "govuk/components/summary-list/macro.njk" import govukSummaryList %} {{ govukSummaryList({ rows: [ { key: { text: "Index Offence" }, value: { text: "Robbery and assaults with intent to rob" } }, { key: { text: "Details of index offence" }, value: { html: "

On 20 April 2018 at 10pm Mr Edwin boarded a 73 bus in Stoke Newington. He went to the top of the bus where he saw Mr Smith sitting at the back of the bus. There were 2 other witnesses at the front of the bus.

Mr Edwin grabbed Mr Smith by the collar and shouted 'give me your phone and your wallet'. Mr Smith loudly told him to 'f**k off'. Mr Edwin hit Mr Smith in the face, breaking his nose and causing him to bleed, and saying 'Give me your phone and wallet or I will hit you again'. Mr Smith gave him his wallet and phone Mr Edwin pushed him into his seat. Mr Edwin ran off the bus at the next stop and ran off.

He was known to police and so the CCTV imagery helped identify him. Police arrested him 2 days later, on the 22 April 2018. On being tested Mr Edwin had crack cocaine in his system.

" } }, { key: { text: "Additional Offence" }, value: { text: "Assault" } }, { key: { text: "What the offence involved" }, value: { html: '' } }, { key: { text: "Other characteristics" }, value: { html: '' } }, { key: { text: "Impact on Victim" }, value: { text: "Mr Smith suffered a broken nose and required hospital treatment. He has since been very afraid to go outside and especially take public transport. This has affected his ability to find and keep a job: he is currently unemployed." } }, { key: { text: "Why did it happen?" }, value: { text: "Mr Edwin said that at the time of the offence he was addicted to crack cocaine and was also in debt to his drug dealer, who he said belonged to a dangerous gang. He was frightened and worried about not being able to buy more crack cocaine. He had recently split up with his long term partner which added to his feeling of stress and led to him using an increased amount of crack cocaine. He said that before boarding the bus he was feeling desperate, which makes him then feel angry. He had used his last hit of crack cocaine just before the offence. " } }, { key: { text: "Evidenced motivations" }, value: { text: " Financial motivation: Yes Addiction / perceived needs: Yes Emotional state of offender: Yes " } }, { key: { text: "Disinhibitors" }, value: { text: "Emotional state: Yes Drugs: Yes Traumatic life event (divorce, redundancy): Yes" } } ] }) }} {% endset -%} {% set licenceConditions %}

Licence Conditions

This is a condensed overview of the licence conditions

View full licence on Delius

{% endset -%} {% set licenceHistory %}

Licence History

Released on licence

Released to community

Recalled to custody

Link to Recall Part A, description of the recall

Drug test above limit

This was the 25th drug test. Cocaine was found in their system

Warning letter sent

Warning letter sent to residence due to failed drug test. Cocaine was found in their system

Drug test above limit

This was the 13th drug test conducted on licence. Cocaine was found in their system

Released on licence

First release on probation

Starts custodial sentence

{% endset -%} {{ govukTabs({ items: [ { label: "Licence Overview", id: "licence-overview", panel: { html: licenceOverview } }, { label: "Offence Overview", id: "offence-overview", panel: { html: offenceOverview } }, { label: "Licence Conditions", id: "licence-conditions", panel: { html: licenceConditions } }, { label: "Licence History", id: "licence-history", panel: { html: licenceHistory } } ] }) }} {% from "govuk/components/button/macro.njk" import govukButton %} {{ govukButton({ text: "Continue", href: "/case", classes: "govuk-!-margin-top-2 govuk-!-margin-bottom-8", isStartButton: false }) }} {% endblock %}