Merged PR 1355: Questionnaire and rep fixes

Related work items: #12878
This commit is contained in:
Robert Bond
2025-01-07 08:43:14 +00:00
17 changed files with 124 additions and 72 deletions
+6 -6
View File
@@ -31,12 +31,12 @@ HASHKEY = 028ffbae928d7191c0017f298260995f901d78eabde1436c0af0423459cc3715832136
# //New PreProd
CLIENT_ID = ab6c4678-b31a-4eb3-b429-e039120e488a
CLIENT_SECRET = V288Q~P1lFMvvX9Xnkx2pLixK~GOREH983Owqc1E
# RELAY_ROOT = https://ar-ns-lz-pedw-ppe-uks-01.servicebus.windows.net/ar-hc-lz-pedw-ppe-uks-01/
# RELAYURI = "ar-ns-lz-pedw-ppe-uks-01.servicebus.windows.net"
# RELAYPATH = "ar-hc-lz-pedw-ppe-uks-01"
RELAY_ROOT = https://ar-ns-lz-pedw-ppe-ukw-01.servicebus.windows.net/ar-hc-lz-pedw-ppe-ukw-01/
RELAYURI = "ar-ns-lz-pedw-ppe-ukw-01.servicebus.windows.net"
RELAYPATH = "ar-hc-lz-pedw-ppe-ukw-01"
RELAY_ROOT = https://ar-ns-lz-pedw-ppe-uks-01.servicebus.windows.net/ar-hc-lz-pedw-ppe-uks-01/
RELAYURI = "ar-ns-lz-pedw-ppe-uks-01.servicebus.windows.net"
RELAYPATH = "ar-hc-lz-pedw-ppe-uks-01"
# RELAY_ROOT = https://ar-ns-lz-pedw-ppe-ukw-01.servicebus.windows.net/ar-hc-lz-pedw-ppe-ukw-01/
# RELAYURI = "ar-ns-lz-pedw-ppe-ukw-01.servicebus.windows.net"
# RELAYPATH = "ar-hc-lz-pedw-ppe-ukw-01"
CRMURL = "ppcrm2016.llcdt.gov.wales/PPPINSWales"
+15 -5
View File
@@ -751,8 +751,9 @@ let MakeRepresentation = (props) => {
props.props.accountDetails.accountDetails.emailaddress1,
"siteAddress":
detailsObj.pinswg_siteaddressline1 +
(detailsObj.pinswg_siteaddressline2 != null &&
" " + detailsObj.pinswg_siteaddressline2 + " ") +
(detailsObj.pinswg_siteaddressline2 != null
? " " + detailsObj.pinswg_siteaddressline2 + " "
: " ") +
detailsObj.pinswg_siteaddresstown +
" " +
detailsObj.pinswg_siteaddresspostcode,
@@ -886,6 +887,13 @@ let MakeRepresentation = (props) => {
window.scrollTo({ top: 0, behavior: "smooth" });
values = setRepFileName(values);
!values.hasOwnProperty("pinswg_lpareference") &&
Object.assign(values, {
"pinswg_lpareference":
searchResultsObj.searchResultsObj.value[0]
.pinswg_lpareference,
});
//console.log("onHandleSubmit form values - ", JSON.stringify(values));
const buildFileArray = [];
@@ -954,9 +962,9 @@ let MakeRepresentation = (props) => {
props.props.accountDetails.accountDetails.emailaddress1,
"siteAddress":
detailsObj.pinswg_siteaddressline1 +
(detailsObj.pinswg_siteaddressline2 != null &&
" " + detailsObj.pinswg_siteaddressline2 + " ") +
" " +
(detailsObj.pinswg_siteaddressline2 != null
? " " + detailsObj.pinswg_siteaddressline2 + " "
: " ") +
detailsObj.pinswg_siteaddresstown +
" " +
detailsObj.pinswg_siteaddresspostcode,
@@ -1195,7 +1203,9 @@ let MakeRepresentation = (props) => {
setShowQuestionnaireSection={
setShowQuestionnaireSection
}
showQuestionnaireSection={showQuestionnaireSection}
props={props}
questionnaireCount={questionnaireCount}
/>
) : (
<>
@@ -27,6 +27,8 @@ const RepCompleteSubmit = (props) => {
setRepresentationMessageSent,
setRepresentationReset,
setShowQuestionnaireSection,
showQuestionnaireSection,
questionnaireCount,
} = props;
const { acceptedFiles, getRootProps, getInputProps } = useDropzone();
const files = acceptedFiles.map((file) => (
@@ -411,10 +413,22 @@ const RepCompleteSubmit = (props) => {
className="govuk-link"
href="#"
onClick={() => {
setSubmitBack();
repFormData.representationType ==
"Questionnaire"
? (setShowQuestionnaireSection(
questionnaireCount ==
7
? 6
: 8
),
setRepresentationSubmit(
false
))
: setSubmitBack();
}}
>
{t("common:change-link-label")}
<span className="govuk-visually-hidden">
{" "}
{/* {FieldsTranslations(
@@ -367,8 +367,7 @@ export const RenderLPACondtionalRadioList = ({
...custom
}) => {
const required = (value) => (value ? undefined : "Required");
//console.log(error);
let { t } = useTranslation();
return (
<>
@@ -401,7 +400,12 @@ export const RenderLPACondtionalRadioList = ({
</label>
</legend>
<div id={id + "-hint"} className="govuk-hint"></div>
{typeof custom.hint != undefined && (
<div id={id + "-hint"} className="govuk-hint">
{t(custom.hint)}
</div>
)}
<div className="govuk-radios govuk-radios--small">
{Object.keys(options).map((key, index) => (
<div key={key} className="govuk-!-margin-bottom-3">
@@ -1132,8 +1136,11 @@ export const RenderFileUpload = (field) => {
"/" +
(typeof field.filenamePrefix != "object"
? field.filenamePrefix
: field.filenamePrefix.representationForm
.values.repfile_name)
: encodeURIComponent(
field.filenamePrefix
.representationForm.values
.repfile_name
))
).then((data) => {
data = data.value || {};
field.input.value == null;
@@ -1265,7 +1272,12 @@ export const RenderFileUpload = (field) => {
"/api/file/downloadblob?container=" +
field.containerID +
"&casefolderID=" +
field.ticketnumber +
encodeURIComponent(
field.ticketnumber +
"/" +
field.filenamePrefix.representationForm
.values.repfile_name
) +
"&blobname=" +
blob.name +
blob.hashedfilepath
@@ -65,6 +65,7 @@ let RepLPA = (props) => {
case 846040017:
return (
<S78_Questionnaire
questionnaireType={"s78"}
props={props}
containerID={
props.props.props.accountDetails.containerID
@@ -85,6 +86,7 @@ let RepLPA = (props) => {
case 846040007:
return (
<Enforcement_Questionnaire
questionnaireType={"enf"}
props={props}
containerID={
props.props.props.accountDetails.containerID
@@ -114,10 +114,11 @@ let Enforcement_Questionnaire = (props) => {
<div className="govuk-label">
3. {t("myrepresentations:enf-section-question-3")}:{" "}
{detailsObj.pinswg_siteaddressline1 +
(detailsObj.pinswg_siteaddressline2 != null &&
" " +
detailsObj.pinswg_siteaddressline2 +
" ") +
(detailsObj.pinswg_siteaddressline2 != null
? " " +
detailsObj.pinswg_siteaddressline2 +
" "
: " ") +
detailsObj.pinswg_siteaddresstown +
" " +
detailsObj.pinswg_siteaddresspostcode}
@@ -1177,7 +1178,7 @@ let Enforcement_Questionnaire = (props) => {
name={"representationDocuments"}
id={"representationDocuments"}
label={t("myrepresentations:add-files-label")}
ticketnumber={props.props.caseReference}
ticketnumber={props.props.props.caseReference}
hint={"sdsd"}
fileList={
props.currentView.caseReference.hasOwnProperty(
@@ -120,24 +120,25 @@ let S78_Questionnaire = (props) => {
</h2>
<div className="govuk-form-group">
<div className="govuk-label">
1. {t("myrepresentations:s78-section-question-1")}{" "}
1. {t("myrepresentations:s78-section-question-1")}:{" "}
{currentView.caseReference.currentReference}
</div>
</div>
<div className="govuk-form-group">
<div className="govuk-label">
2. {t("myrepresentations:s78-section-question-2")}{" "}
2. {t("myrepresentations:s78-section-question-2")}:{" "}
{resultsObj.pinswg_lpareference}
</div>
</div>
<div className="govuk-form-group">
<div className="govuk-label">
3. {t("myrepresentations:s78-section-question-3")}{" "}
3. {t("myrepresentations:s78-section-question-3")}:{" "}
{detailsObj.pinswg_siteaddressline1 +
(detailsObj.pinswg_siteaddressline2 != null &&
" " +
detailsObj.pinswg_siteaddressline2 +
" ") +
(detailsObj.pinswg_siteaddressline2 != null
? " " +
detailsObj.pinswg_siteaddressline2 +
" "
: " ") +
detailsObj.pinswg_siteaddresstown +
" " +
detailsObj.pinswg_siteaddresspostcode}
@@ -145,7 +146,7 @@ let S78_Questionnaire = (props) => {
</div>
<div className="govuk-form-group">
<div className="govuk-label">
4. {t("myrepresentations:s78-section-question-4")}{" "}
4. {t("myrepresentations:s78-section-question-4")}:{" "}
{
getFormCollectionByID(
currentView.caseReference.appealType
@@ -813,6 +814,7 @@ let S78_Questionnaire = (props) => {
legend={t(
"myrepresentations:s78-section-question-27"
)}
hint={t("myrepresentations:s78-footnote-two")}
conditionalLabel={t(
"myrepresentations:s78-section-question-27-hint"
)}
@@ -865,6 +867,7 @@ let S78_Questionnaire = (props) => {
legend={t(
"myrepresentations:s78-section-question-29"
)}
hint={t("myrepresentations:s78-footnote-one")}
conditionalLabel={t(
"myrepresentations:s78-section-question-29-hint"
)}
@@ -990,7 +993,7 @@ let S78_Questionnaire = (props) => {
name={"representationDocuments"}
id={"representationDocuments"}
label={t("myrepresentations:add-files-label")}
ticketnumber={props.props.caseReference}
ticketnumber={props.props.props.caseReference}
hint={"sdsd"}
fileList={
props.currentView.caseReference.hasOwnProperty(
@@ -336,7 +336,12 @@ let RepLPAQuestionnaireCheck_enforcement = (props) => {
</dt>
<dd className="govuk-summary-list__value">
{repFormData.healthAndSafetyIssues}
<div
className="govuk-summary-list-check-ellipsis"
dangerouslySetInnerHTML={{
__html: repFormData.LPAcontactDetails,
}}
/>
</dd>
<dd className="govuk-summary-list__actions">
@@ -216,7 +216,7 @@ let RepLPAQuestionnaireCheck_s78 = (props) => {
</dd>
</div>
{repFormData.enterNeighbouringLandAccessRequired ==
"Yes" && (
"No" && (
<div className="govuk-summary-list__row">
<dt className="govuk-summary-list__key">
Evidence
@@ -226,7 +226,7 @@ let RepLPAQuestionnaireCheck_s78 = (props) => {
<div
className="govuk-summary-list-check-ellipsis"
dangerouslySetInnerHTML={{
__html: repFormData.enterNeighbouringLandAccessRequired,
__html: repFormData.enterNeighbouringLandAccessRequiredEvidence,
}}
/>
</dd>
@@ -331,7 +331,12 @@ let RepLPAQuestionnaireCheck_s78 = (props) => {
</dt>
<dd className="govuk-summary-list__value">
{repFormData.healthAndSafetyIssues}
<div
className="govuk-summary-list-check-ellipsis"
dangerouslySetInnerHTML={{
__html: repFormData.LPAcontactDetails,
}}
/>
</dd>
<dd className="govuk-summary-list__actions">
@@ -396,7 +401,7 @@ let RepLPAQuestionnaireCheck_s78 = (props) => {
<>
<div className="govuk-summary-list__row">
<dt className="govuk-summary-list__key">
12. LPAs adopted local development plan and
12. LPAs adopted Local Development Plan and
Proposals Map
</dt>
@@ -435,7 +440,7 @@ let RepLPAQuestionnaireCheck_s78 = (props) => {
<div className="govuk-summary-list__row">
<dt className="govuk-summary-list__key">
14. If applicable, do you intend to submit a full
statement at the 4- week stage?
statement at the 4-week stage?
</dt>
<dd className="govuk-summary-list__value">
@@ -1370,7 +1375,7 @@ let RepLPAQuestionnaireCheck_s78 = (props) => {
<dt className="govuk-summary-list__key">
27. Evidence of any publicity given to the
application, including site notices and local
advertisement?**
advertisement?
</dt>
<dd className="govuk-summary-list__value">
+2 -2
View File
@@ -658,7 +658,7 @@ export const EnforcementQuestionnaire_pdf = ({ docProps }) => {
>
<Text style={styles.questionBullet}>18.</Text>
<Text style={styles.questionText}>
LPAs adopted local development plan and
LPAs adopted Local Development Plan and
Proposals Map
</Text>
<View style={styles.questionAnswer}>
@@ -695,7 +695,7 @@ export const EnforcementQuestionnaire_pdf = ({ docProps }) => {
<Text style={styles.questionBullet}>20.</Text>
<Text style={styles.questionTextMid}>
If applicable, do you intend to submit a
full statement at the 4- week stage?
full statement at the 4-week stage?
</Text>
<Text style={styles.questionAnswerMid}>
{values.LPAintentionToSubmitFullStatement}
@@ -203,7 +203,7 @@ export const lpaQuestionnaire_pdf = ({ docProps }) => {
)}
</Text>
<Text style={styles.questionAnswer}>
{values.lpaRef || " "}
{values.pinswg_lpareference || " "}
</Text>
</View>
<View
@@ -1422,14 +1422,14 @@ export const lpaQuestionnaire_pdf = ({ docProps }) => {
</View>
</View>
</View>
<View style={{ marginTop: 50, fontSize: 12 }}>
{/* <View style={{ marginTop: 50, fontSize: 12 }}>
<Text>
{getTrans(docProps.locale, "s78-footnote-one")}
</Text>
<Text style={{ marginTop: 20 }}>
{getTrans(docProps.locale, "s78-footnote-two")}{" "}
</Text>
</View>
</View> */}
</View>
</View>
<Text
+1 -1
View File
@@ -2185,7 +2185,7 @@
"value_cy": "Tystysgrif B Tystiaf fod yr apelydd (neu'r asiant) wedi rhoi'r hysbysiad gofynnol (gweler y daflen arweiniad) i bawb arall a oedd, ar y diwrnod 21 diwrnod cyn dyddiad yr apêl hon, yn berchennog (gweler y daflen arweiniad am ddiffiniad) unrhyw ran o'r tir y mae'r apêl yn ymwneud ag ef, fel y rhestrir isod:"
},
{
"value": "Certificates C and D - If you do not know who owns all or part of the appeal site, complete either Certificate C or Certificate D at Annexe 1 of our guidance and attach it to the appeal form",
"value": "Certificates C and D - If you do not know who owns all or part of the appeal site, complete either Certificate C or Certificate D at Annex 1 of our guidance and attach it to the appeal form",
"value_cy": "Tystysgrifau C a D - Os nad ydych yn gwybod pwy sy'n berchen ar safle cyfan yr apêl neu ran ohono, cwblhewch naill ai Dystysgrif C neu Dystysgrif D yn Atodiad 1 ein canllaw a'i hatodi i'r ffurflen apelio"
},
{
+2 -2
View File
@@ -23,8 +23,8 @@
"searchcases-card-advanced-link": "Chwiliad Uwch",
"searchcases-validation-required": "Angenrheidiol",
"searchcases-validation-minlength": "Rhaid iddo gynnwys 4 nod neu fwy",
"awatitingsubmission-card-title": "Yn aros iw gyflwyno",
"myrepresentations-card-title": "Fy sylwadau",
"awatitingsubmission-card-title": "Apeliadau yn aros i gael eu cyflwyno",
"myrepresentations-card-title": "Sylwadau yn aros i gael eu cyflwyno",
"watchedcases-card-title": "Achosion sy'n cael eu gwylio",
"submitted-reps-card-title": "Sylwadau a gyflwynwyd",
"case-reference": "Cyfeirnod yr achos",
+5 -5
View File
@@ -83,17 +83,17 @@
"s78-section-question-23-hint": "Os Ydych, nodwch ba rai ac atodwch unrhyw fanylion perthnasol",
"s78-section-heading-four": "Amodau awgrymedig",
"s78-section-question-24": "Adolygwch yr amodau safonol canlynol a chynghorwch a fyddent yn angenrheidiol pe byddai caniatâd/cydsyniad yn cael ei roi (nid yw hyn yn berthnasol i gynigion am gydsyniad Hysbysebu):",
"s78-section-question-24a": "a) Bydd y datblygiad yn dechrau ddim hwyrach na phum mlynedd o ddyddiad y penderfyniad hwn. Rheswm: Cydymffurfio ag Adran 91 Deddf Cynllunio Gwlad a Thref 1990 / Adran 18 Deddf Cynllunio Gwlad a Thref (Adeiladau Rhestredig ac Ardaloedd Cadwraeth) 1990.",
"s78-section-question-24b": "b) Rhaid cyflawni'r datblygiad yn unol â'r cynlluniau a'r dogfennau cymeradwy canlynol: .................................... Rheswm: Er mwyn sicrhau bod y datblygiad yn cael ei gynnal yn unol â’r dogfennau, y cynlluniau a'r lluniadau cymeradwy a gyflwynwyd gydar cais.",
"s78-section-question-24a": "Bydd y datblygiad yn dechrau ddim hwyrach na phum mlynedd o ddyddiad y penderfyniad hwn. Rheswm: Cydymffurfio ag Adran 91 Deddf Cynllunio Gwlad a Thref 1990 / Adran 18 Deddf Cynllunio Gwlad a Thref (Adeiladau Rhestredig ac Ardaloedd Cadwraeth) 1990.",
"s78-section-question-24b": "Rhaid cyflawni'r datblygiad yn unol â'r cynlluniau a'r dogfennau cymeradwy canlynol: .................................... Rheswm: Er mwyn sicrhau bod y datblygiad yn cael ei gynnal yn unol â’r dogfennau, y cynlluniau a'r lluniadau cymeradwy a gyflwynwyd gydar cais.",
"s78-section-question-24b-hint": "Os Ie, rhestrwch y cynlluniau, y dogfennau a'r lluniadau cymeradwy yma neu rhestrwch nhw mewn dogfen atodedig",
"s78-section-question-24c": "c) Ni chaiff unrhyw waith datblygu ddigwydd hyd nes y bydd cynllun gwella bioamrywiaeth wedi cael ei gyflwyno i'r awdurdod cynllunio lleol a'i gytuno ganddo'n ysgrifenedig. Bydd datblygiad yn cael ei gynnal yn unol â'r manylion cymeradwy. Rheswm: Er mwyn cynnal a gwella bioamrywiaeth, yn unol â Pholisi 9 Cymrur Dyfodol.",
"s78-section-question-24d": "d) Ni chaiff unrhyw waith datblygu ddigwydd hyd nes y bydd cynllun i alluogi darparu seilwaith band eang all drosglwyddo data ar gyfradd gigadid o ffin y safle ir anheddau/adeiladau a ganiateir drwy hyn wedi cael ei gyflwyno ir awdurdod cynllunio lleol ai gytuno ganddon ysgrifenedig. Bydd y datblygiad yn cael ei gynnal yn unol â'r manylion cymeradwy. Rheswm: Er mwyn cefnogir gwaith o gyflwyno seilwaith cyfathrebu digidol ledled Cymru yn unol â Pholisi 13 Cymrur Dyfodol.",
"s78-section-question-24c": "Ni chaiff unrhyw waith datblygu ddigwydd hyd nes y bydd cynllun gwella bioamrywiaeth wedi cael ei gyflwyno i'r awdurdod cynllunio lleol a'i gytuno ganddo'n ysgrifenedig. Bydd datblygiad yn cael ei gynnal yn unol â'r manylion cymeradwy. Rheswm: Er mwyn cynnal a gwella bioamrywiaeth, yn unol â Pholisi 9 Cymrur Dyfodol.",
"s78-section-question-24d": "Ni chaiff unrhyw waith datblygu ddigwydd hyd nes y bydd cynllun i alluogi darparu seilwaith band eang all drosglwyddo data ar gyfradd gigadid o ffin y safle ir anheddau/adeiladau a ganiateir drwy hyn wedi cael ei gyflwyno ir awdurdod cynllunio lleol ai gytuno ganddon ysgrifenedig. Bydd y datblygiad yn cael ei gynnal yn unol â'r manylion cymeradwy. Rheswm: Er mwyn cefnogir gwaith o gyflwyno seilwaith cyfathrebu digidol ledled Cymru yn unol â Pholisi 13 Cymrur Dyfodol.",
"s78-section-question-25": "A ydych yn ystyried bod amodau eraill, neu fersiynau diwygiedig o'r amodau safonol uchod, yn angenrheidiol?",
"s78-section-question-25-hint": "Os Ydych, rhestrwch nhw yma neu mewn dogfen atodedig. Dylech gynnwys rhesymau a pholisïau perthnasol y cynllun datblygu. Os ydych yn bwriadu anfon amodau awgrymedig gydach datganiad 4 wythnos, nodwch hyn yma.",
"s78-section-heading-five": "Cyn anfon, ydych chi wedi atodi neu ddarparu dolen we i'r canlynol:",
"s78-section-question-26": "Copi o dystysgrif yr ymgeisydd sy'n cadarnhau ei fod wedi hysbysu pobl sydd â buddiant yn y tir?",
"s78-section-question-26-hint": "Rhowch ddolen we yma os yw ar gael ar-lein. Os Na, rhowch resymau",
"s78-section-question-27": "Tystiolaeth o unrhyw gyhoeddusrwydd a roddwyd i'r cais, gan gynnwys hysbysiadau safle a hysbyseb leol?**",
"s78-section-question-27": "Tystiolaeth o unrhyw gyhoeddusrwydd a roddwyd i'r cais, gan gynnwys hysbysiadau safle a hysbyseb leol?",
"s78-section-question-27-hint": "Rhowch ddolen we yma os yw ar gael ar-lein. Os Na, rhowch resymau",
"s78-section-question-28": "Copi o'r llythyr a anfonoch at bobl i'w hysbysu am yr apêl YN OGYSTAL Â rhestr o'r bobl y gwnaethoch eu hysbysu?",
"s78-section-question-28-hint": "Rhowch ddolen we yma os yw ar gael ar-lein. Os Na, rhowch resymau",
+2 -2
View File
@@ -23,8 +23,8 @@
"searchcases-card-advanced-link": "Advanced Search",
"searchcases-validation-required": "Required",
"searchcases-validation-minlength": "Must be 4 characters or more",
"awatitingsubmission-card-title": "Awaiting submission",
"myrepresentations-card-title": "My representations",
"awatitingsubmission-card-title": "Appeals awaiting submission",
"myrepresentations-card-title": "Representations awaiting submission",
"watchedcases-card-title": "Watched cases",
"submitted-reps-card-title": "Submitted representations",
"case-reference": "Case reference",
+16 -16
View File
@@ -25,7 +25,7 @@
"fileupload-drop-label": "Drag and drop your files here.",
"fileupload-file-list-label": "Only .pdf, .doc, .docx, .xlsx, .tif, .tiff, .jpeg, .jpg or .zip files will be accepted",
"capacity-para-one": "This form enables you to submit representations on a case to Planning and Environment Decisions Wales.",
"capacity-para-two": "Please note that representations from interested parties need to be made within the timetable. This can be found on the previous \"Case Summary\" page. Comments submitted after this date may be considered invalid.",
"capacity-para-two": "Please note that representations from interested parties need to be made within the timetable. This can be found on the previous \"Case Summary\" page. Representations submitted after this date may be considered invalid.",
"capacity-select-your-details": "Your details",
"capacity-select-what-capacity-label": "In what capacity do you wish to make representations on this case?",
"capacity-options-arr-appellant": "Appellant",
@@ -59,11 +59,11 @@
"s78-section-heading-two": "Supporting documents",
"s78-section-question-11": "LPA case file and representations",
"s78-section-question-11-hint": "Insert weblink(s) to case file and representations on the LPAs public portal. This must include all documents which were before the LPA at the time of its decision or when the appeal was made. Ensure that you link directly to the case documents list, not to a generic page on the LPAs portal. If web-based comments were also made, insert a second link to that page. Alternatively, state here if you are sending relevant case file documents under separate cover.",
"s78-section-question-12": "LPAs adopted local development plan and Proposals Map",
"s78-section-question-12": "LPAs adopted Local Development Plan and Proposals Map",
"s78-section-question-12-hint": "Insert weblinks to the Written Statement of the adopted LDP/UDP, and the accompanying Proposals Map (including map key). Alternatively, list relevant policies here and attach excerpts.",
"s78-section-question-13": "Adopted local guidance relevant to the proposal",
"s78-section-question-13-hint": "Insert weblink(s) to any relevant any local guidance (e.g. Supplementary Planning Guidance, Conservation Area appraisals) which the LPA considers relevant, specifying the document name before the web link. Alternatively, list the relevant guidance and attach copies/excerpts.",
"s78-section-question-14": "If applicable, do you intend to submit a full statement at the 4- week stage?",
"s78-section-question-13-hint": "Insert weblink(s) to any relevant local guidance (e.g. Supplementary Planning Guidance, Conservation Area appraisals) which the LPA considers relevant, specifying the document name before the web link. Alternatively, list the relevant guidance and attach copies/excerpts.",
"s78-section-question-14": "If applicable, do you intend to submit a full statement at the 4-week stage?",
"s78-section-heading-three": "Statutory considerations",
"s78-section-question-15": "Is all or part of the site within an Area of Outstanding Natural Beauty?",
"s78-section-question-16": "Does the site include any public rights of way?",
@@ -83,17 +83,17 @@
"s78-section-question-23-hint": "If Yes, specify which and attach any relevant details",
"s78-section-heading-four": "Suggested conditions",
"s78-section-question-24": "Review the following standard conditions and advise whether they would be necessary if permission/consent is granted (not applicable to Advertisement consent proposals)",
"s78-section-question-24a": "a) The development shall begin not later than five years from the date of this decision. Reason: To comply with Section 91 of the Town and Country Planning Act 1990 / Section 18 of the Town and Country Planning (Listed Building and Conservation Areas) Act 1990.",
"s78-section-question-24b": "b) The development shall be carried out in accordance with the following approved plans and documents: ............................ Reason: To ensure the development is carried out in accordance with the approved documents, plans and drawings submitted with the application.",
"s78-section-question-24a": "The development shall begin not later than five years from the date of this decision. Reason: To comply with Section 91 of the Town and Country Planning Act 1990 / Section 18 of the Town and Country Planning (Listed Building and Conservation Areas) Act 1990.",
"s78-section-question-24b": "The development shall be carried out in accordance with the following approved plans and documents: ............................ Reason: To ensure the development is carried out in accordance with the approved documents, plans and drawings submitted with the application.",
"s78-section-question-24b-hint": "If Yes, list the approved plans, documents and drawings here or list them in an attached document",
"s78-section-question-24c": "c) No development shall take place until a scheme for biodiversity enhancement has been submitted to and agreed in writing by the local planning authority. Development shall be carried out in accordance with the approved details. Reason: In the interests of maintaining and enhancing biodiversity, in accordance with Future Wales Policy 9.",
"s78-section-question-24d": "d) No development shall take place until a scheme to enable the provision of gigabit capable broadband infrastructure from the site boundary to the dwellings/buildings hereby permitted has been submitted to and agreed in writing by the local planning authority. Development shall be carried out in accordance with the approved details. Reason: To support the roll-out of digital communications infrastructure across Wales in accordance with Policy 13 of Future Wales.",
"s78-section-question-24c": "No development shall take place until a scheme for biodiversity enhancement has been submitted to and agreed in writing by the local planning authority. Development shall be carried out in accordance with the approved details. Reason: In the interests of maintaining and enhancing biodiversity, in accordance with Future Wales Policy 9.",
"s78-section-question-24d": "No development shall take place until a scheme to enable the provision of gigabit capable broadband infrastructure from the site boundary to the dwellings/buildings hereby permitted has been submitted to and agreed in writing by the local planning authority. Development shall be carried out in accordance with the approved details. Reason: To support the roll-out of digital communications infrastructure across Wales in accordance with Policy 13 of Future Wales.",
"s78-section-question-25": "Do you consider other conditions, or amended versions of the above standard conditions, to be necessary?",
"s78-section-question-25-hint": "If Yes, list them here or in an attached document. Include reasons and relevant development plan policies. If you intend to send suggested conditions alongside your 4 week statement, state this here.",
"s78-section-heading-five": "Before sending, have you attached or provided a web link to",
"s78-section-heading-five": "Before sending, have you attached or provided a web link to the following:",
"s78-section-question-26": "A copy of the applicants certificate confirming that they notified persons with an interest in the land?",
"s78-section-question-26-hint": "Insert weblink here if available online. If No, give reasons",
"s78-section-question-27": "Evidence of any publicity given to the application, including site notices and local advertisement?**",
"s78-section-question-27": "Evidence of any publicity given to the application, including site notices and local advertisement?",
"s78-section-question-27-hint": "Insert weblink here if available online. If No, give reasons",
"s78-section-question-28": "A copy of the letter with which you notified people of the appeal AND a list of the people you notified?",
"s78-section-question-28-hint": "Insert weblink here if available online. If No, give reasons",
@@ -145,11 +145,11 @@
"enf-section-question-17": "Have permitted development rights been restricted by any previous planning condition?",
"enf-section-question-17-hint": "If Yes, please provide details and submit any relevant documents, listing them here.",
"enf-section-heading-four": "Supporting Documents",
"enf-section-question-18": "LPAs adopted local development plan and Proposals Map",
"enf-section-question-18": "LPAs adopted Local Development Plan and Proposals Map",
"enf-section-question-18-hint": "Insert weblinks to the Written Statement of the adopted LDP/UDP, and the accompanying Proposals Map (including map key). Alternatively, list relevant policies here and attach excerpts.",
"enf-section-question-19": "Adopted local guidance relevant to the proposal",
"enf-section-question-19-hint": "Insert weblink(s) to any relevant any local guidance (e.g. Supplementary Planning Guidance, Conservation Area appraisals) which the LPA considers relevant, specifying the document name before the web link. Alternatively, list the relevant guidance and attach copies/excerpts.",
"enf-section-question-20": "If applicable, do you intend to submit a full statement at the 4- week stage?",
"enf-section-question-19-hint": "Insert weblink(s) to any relevant local guidance (e.g. Supplementary Planning Guidance, Conservation Area appraisals) which the LPA considers relevant, specifying the document name before the web link. Alternatively, list the relevant guidance and attach copies/excerpts.",
"enf-section-question-20": "If applicable, do you intend to submit a full statement at the 4-week stage?",
"enf-section-heading-five": "Statutory considerations",
"enf-section-question-21": "Is all or part of the site within an Area of Outstanding Natural Beauty?",
"enf-section-question-22": "Does the site include any public rights of way?",
@@ -177,7 +177,7 @@
"enf-section-question-31c": "c) No development shall take place until a scheme to enable the provision of gigabit capable broadband infrastructure from the site boundary to the dwellings/buildings hereby permitted has been submitted to and agreed in writing by the local planning authority. Development shall be carried out in accordance with the approved details. Reason: To support the roll-out of digital communications infrastructure across Wales in accordance with Policy 13 of Future Wales.",
"enf-section-question-32": "Do you consider other conditions, or amended versions of the above standard conditions, to be necessary?",
"enf-section-question-32-hint": "If Yes, list them here or in an attached document. Include reasons and relevant development plan policies. If you intend to send suggested conditions alongside your 4 week statement, state this here.",
"enf-section-heading-seven": "Before sending, have you attached or provided a web link to",
"enf-section-heading-seven": "Before sending, have you attached or provided a web link to the following:",
"enf-section-question-33": "A true copy of the enforcement notice?",
"enf-section-question-33-hint": "Insert weblink here if available online. If No, give reasons",
"enf-section-question-34": "The enforcement notice plan.",
@@ -206,8 +206,8 @@
"s78-heading-para-one": "For Planning, Conservation area, Listed Building and Advertisement applications/appeals",
"s78-heading-para-two": "The LPA must send the completed questionnaire and any attachments to PEDW.casework@gov.wales and the appellant (or their agent) within 5 working days of the start date specified in our start letter",
"section-heading-zero": "Case Details",
"s78-footnote-one": "* Article 11 of The Town and Country Planning (Development Management Procedure) (Wales) Order 2012; Regulation 7 of The Town and Country Planning (Listed Buildings and Conservation Areas) (Wales) Regulations 2012",
"s78-footnote-two": "** Article 12 of The Town and Country Planning (Development Management Procedure) (Wales) Order 2012; Section 67/73 of The Town and Country Planning (Listed Buildings and Conservation Areas) Act 1990; Regulation 10 of The Town and Country Planning (Listed Buildings and Conservation Areas) (Wales) Regulations 2012",
"s78-footnote-one": "Article 11 of The Town and Country Planning (Development Management Procedure) (Wales) Order 2012; Regulation 7 of The Town and Country Planning (Listed Buildings and Conservation Areas) (Wales) Regulations 2012",
"s78-footnote-two": "Article 12 of The Town and Country Planning (Development Management Procedure) (Wales) Order 2012; Section 67/73 of The Town and Country Planning (Listed Buildings and Conservation Areas) Act 1990; Regulation 10 of The Town and Country Planning (Listed Buildings and Conservation Areas) (Wales) Regulations 2012",
"statement-case-type-label": "Case type",
"statement-representation-capacity-label": "Representation capacity",
"statement-representation-capacity-details-label": "Representation capacity details",
+2 -2
View File
@@ -59,7 +59,7 @@
"new-appeal-documentlist-nav": "Documents needed",
"new-appeal-introduction-paragraph": "This form is to appeal against:",
"new-appeal-introduction-paragraph-bullet-one": "a decision to refuse a planning application",
"new-appeal-introduction-paragraph-bullet-two": "the failure of the Local Planning Authority to give a decision with 8 weeks",
"new-appeal-introduction-paragraph-bullet-two": "the failure of the Local Planning Authority to give a decision within 8 weeks",
"new-appeal-introduction-paragraph-two": "It does not include Householder applications.",
"new-appeal-introduction-warning-paragraph": "You must:",
"new-appeal-introduction-warning-bullet-one": "submit your appeal within 6 months of the date of the Local Planning Authority's decision notice",
@@ -71,7 +71,7 @@
"new-appeal-ownership-option-NA": "Not applicable",
"new-appeal-ownership-option-A": "Certificate A - (for sole owners of the appeal site). I certify that, on the day 21 days before the date of this appeal, nobody except the appellant, was the owner (see the guidance leaflet for a definition) of any part of the land to which the appeal relates",
"new-appeal-ownership-option-B": "Certificate B - I certify that the appellant (or the agent) has given the requisite notice (see the guidance leaflet) to everyone else who, on the day 21 days before the date of this appeal, was the owner (see the guidance leaflet for a definition) of any part of the land to which the appeal relates, as listed below:",
"new-appeal-ownership-option-CD": "Certificates C and D - If you do not know who owns all or part of the appeal site, complete either Certificate C or Certificate D at Annexe 1 of our guidance and attach it to the appeal form",
"new-appeal-ownership-option-CD": "Certificates C and D - If you do not know who owns all or part of the appeal site, complete either Certificate C or Certificate D at Annex 1 of our guidance and attach it to the appeal form",
"new-appeal-agricultural-hint": "We also need to know whether the appeal site forms part of an agricultural holding. Please select either (a), (b)(i) or (b)(ii)",
"new-appeal-agricultural-holding-option-yes": "(a) None of the land to which the appeal relates is, or is part of, an agricultural holding",
"new-appeal-agricultural-holding-option-no": "(b) (i) The appeal site is, or is part of an agricultural holding, and the appellant is the sole agricultural tenant",