{% extends 'base.html' %} {% load i18n %} {% load mtp_common %} {% load prisons %} {% block page_title %}{% trans 'Prisons in England and Wales' %} – {{ block.super }}{% endblock %} {% block content %}

{% trans 'Prisons in England and Wales' %}

{% trans 'The ‘Send money to someone in prison’ service is available in the following prisons, young offender institutions and immigration removal centres in England and Wales.' %}

{% if prison_list %}
  • {% trans 'No prisons found' %}
  • {% for prison in prison_list %}
  • {{ prison|describe_abbreviation }}
  • {% endfor %}
{% else %}

{% trans 'Sorry, we can’t list the prisons right now' %}

{% blocktrans trimmed with link='https://www.gov.uk/government/collections/prisons-in-england-and-wales' %} You can see the full list of prisons in England and Wales on GOV.UK. {% endblocktrans %}

{% endif %}
{% endblock %}