welsh versions of questionnaire
This commit is contained in:
@@ -574,7 +574,9 @@ const Breadcrumbs = (props) => {
|
||||
</Link>
|
||||
</li>
|
||||
<li className="govuk-breadcrumbs__list-item">
|
||||
Make representation for:{" "}
|
||||
{t(
|
||||
"myrepresentations:make-a-representation-for-label"
|
||||
)}{" "}
|
||||
{
|
||||
props.props.currentView.caseReference
|
||||
.currentReference
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -44,7 +44,9 @@ const RepAgent = (props) => {
|
||||
<>
|
||||
<div className="govuk-grid-row">
|
||||
<h2 className="govuk-heading-m ">
|
||||
Representation from an Agent
|
||||
{t(
|
||||
"myrepresentations:representation-from-an-agent-heading"
|
||||
)}
|
||||
</h2>
|
||||
|
||||
<div className="govuk-form-group">
|
||||
@@ -52,7 +54,7 @@ const RepAgent = (props) => {
|
||||
className="govuk-label govuk-body-m"
|
||||
htmlFor="representationType"
|
||||
>
|
||||
What kind of representation are you making?
|
||||
{t("myrepresentations:kind-of-rep-label")}
|
||||
</label>
|
||||
<Field
|
||||
name="representationType"
|
||||
@@ -81,7 +83,7 @@ const RepAgent = (props) => {
|
||||
<Field
|
||||
name="representationOnBehalfOf"
|
||||
datafieldname="representationOnBehalfOf"
|
||||
// label="In what capacity do you wish to make representations on this case?"
|
||||
// label={t("myrepresentations:capacity-select-what-capacity-label")}
|
||||
options={["Yes", "No"]}
|
||||
id="representationOnBehalfOf"
|
||||
className="govuk-radios__input"
|
||||
@@ -98,15 +100,14 @@ const RepAgent = (props) => {
|
||||
<div className="govuk-grid-row">
|
||||
<div className="govuk-form-group">
|
||||
<p className="govuk-body">
|
||||
You can enter your comments in the space provided or
|
||||
attach a separate document.
|
||||
{t("myrepresentations:enter-comment-label")}
|
||||
</p>
|
||||
<fieldset
|
||||
className="govuk-fieldset"
|
||||
aria-describedby="commentBox-hint"
|
||||
>
|
||||
<div id="commentBox-hint" className="govuk-hint">
|
||||
My comments are set out in:
|
||||
{t("myrepresentations:comments-set-out-label")}:
|
||||
</div>
|
||||
<div className="govuk-form-group">
|
||||
<Field
|
||||
@@ -119,14 +120,7 @@ const RepAgent = (props) => {
|
||||
aria-describedby={props.name + "-hint"}
|
||||
/>
|
||||
<p className="govuk-hint govuk-!-font-size-14 govuk-!-margin-top-5">
|
||||
Please note that all representations may be
|
||||
published in line with our Publishing Policy.
|
||||
Should your representation include any sensitive
|
||||
information or potentially defamatory
|
||||
information, it may be redacted before
|
||||
publishing. If it contains racist, libellous or
|
||||
offensive content it will be returned to you and
|
||||
you will be asked to provide an amended version.{" "}
|
||||
{t("myrepresentations:publish-policy-label")}
|
||||
<a href="https://gov.wales/planning-and-environment-decisions-wales-publishing-policy-html">
|
||||
https://gov.wales/planning-and-environment-decisions-wales-publishing-policy-html
|
||||
</a>
|
||||
@@ -135,7 +129,7 @@ const RepAgent = (props) => {
|
||||
<div className="govuk-form-group govuk-!-margin-bottom-9">
|
||||
<FileUploadField
|
||||
name={"representationDocuments"}
|
||||
label={"Add your files"}
|
||||
label={t("myrepresentations:add-files-label")}
|
||||
ticketnumber={props.props.caseReference}
|
||||
hint={"sdsd"}
|
||||
fileList={[]}
|
||||
@@ -186,7 +180,7 @@ const RepAgent = (props) => {
|
||||
className="govuk-button"
|
||||
data-module="govuk-button"
|
||||
>
|
||||
Continue
|
||||
{t("common:continue-button")}{" "}
|
||||
</button>
|
||||
{/* <a
|
||||
onClick={() => {
|
||||
@@ -194,7 +188,7 @@ const RepAgent = (props) => {
|
||||
}}
|
||||
className="govuk-button"
|
||||
>
|
||||
Continue ww
|
||||
{t("common:continue-button")} ww
|
||||
</a> */}
|
||||
<a
|
||||
onClick={() => {
|
||||
@@ -202,7 +196,7 @@ const RepAgent = (props) => {
|
||||
}}
|
||||
className="govuk-link"
|
||||
>
|
||||
Back
|
||||
{t("common:back-link")}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -48,13 +48,18 @@ const RepAppellant = (props) => {
|
||||
<div className="govuk-grid-row">
|
||||
<div className="govuk-form-group">
|
||||
<h2 className="govuk-heading-m ">
|
||||
Representation from an Appellant
|
||||
{t(
|
||||
"myrepresentations:representation-from-an-appellant-heading"
|
||||
)}
|
||||
</h2>
|
||||
<label
|
||||
className="govuk-label govuk-body-m"
|
||||
htmlFor="representationType"
|
||||
>
|
||||
What kind of representation are you making?
|
||||
{t(
|
||||
"myrepresentations:representation-from-an-agent-heading"
|
||||
)}
|
||||
?
|
||||
</label>
|
||||
|
||||
{typeof props.representationType == "undefined" ? (
|
||||
@@ -88,15 +93,14 @@ const RepAppellant = (props) => {
|
||||
<div className="govuk-grid-row">
|
||||
<div className="govuk-form-group">
|
||||
<p className="govuk-body">
|
||||
You can enter your comments in the space provided or
|
||||
attach a separate document.
|
||||
{t("myrepresentations:enter-comment-label")}
|
||||
</p>
|
||||
<fieldset
|
||||
className="govuk-fieldset"
|
||||
aria-describedby="commentBox-hint"
|
||||
>
|
||||
<div id="commentBox-hint" className="govuk-hint">
|
||||
My comments are set out in:
|
||||
{t("myrepresentations:comments-set-out-label")}:
|
||||
</div>
|
||||
<div className="govuk-form-group">
|
||||
<Field
|
||||
@@ -115,7 +119,7 @@ const RepAppellant = (props) => {
|
||||
<div className="govuk-form-group govuk-!-margin-bottom-9">
|
||||
<FileUploadField
|
||||
name={"representationDocuments"}
|
||||
label={"Add your files"}
|
||||
label={t("myrepresentations:add-files-label")}
|
||||
ticketnumber={props.props.caseReference}
|
||||
hint={"sdsd"}
|
||||
fileList={[]}
|
||||
@@ -166,7 +170,7 @@ const RepAppellant = (props) => {
|
||||
className="govuk-button"
|
||||
data-module="govuk-button"
|
||||
>
|
||||
Continue
|
||||
{t("common:continue-button")}
|
||||
</button>
|
||||
{/* <a
|
||||
onClick={() => {
|
||||
@@ -174,7 +178,7 @@ const RepAppellant = (props) => {
|
||||
}}
|
||||
className="govuk-button"
|
||||
>
|
||||
Continue ww
|
||||
{t("common:continue-button")} ww
|
||||
</a> */}
|
||||
<a
|
||||
onClick={() => {
|
||||
@@ -182,7 +186,7 @@ const RepAppellant = (props) => {
|
||||
}}
|
||||
className="govuk-link"
|
||||
>
|
||||
Back
|
||||
{t("common:back-link")}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -56,12 +56,17 @@ let RepCapacitySelection = (props) => {
|
||||
<div className="govuk-grid-column-three-quarters">
|
||||
<div className="govuk-grid-row">
|
||||
<h2 className="govuk-heading-m ">
|
||||
Your details - {props.firstValue}
|
||||
{t(
|
||||
"myrepresentations:capacity-select-your-details"
|
||||
)}{" "}
|
||||
- {props.firstValue}
|
||||
</h2>
|
||||
<Field
|
||||
name="representationCapacity"
|
||||
datafieldname="representationCapacity"
|
||||
label="In what capacity do you wish to make representations on this case?"
|
||||
label={t(
|
||||
"myrepresentations:capacity-select-what-capacity-label"
|
||||
)}
|
||||
options={capacityOptionsArr}
|
||||
id="representationCapacity"
|
||||
className="govuk-radios__input"
|
||||
|
||||
@@ -56,25 +56,13 @@ const RepComplete = (props) => {
|
||||
<div className="govuk-grid-column-full">
|
||||
<div className="govuk-grid-row govuk-body">
|
||||
<h1 className="govuk-heading-m ">
|
||||
Submission of Representation
|
||||
{t("myrepresentations:rep-complete-heading")}
|
||||
</h1>
|
||||
<p>
|
||||
Thank you for submitting your representation(s) using
|
||||
the Appeals Casework Portal.
|
||||
</p>
|
||||
<p>{t("myrepresentations:rep-complete-para-one")}</p>
|
||||
|
||||
<p>
|
||||
Please remember that any supporting documentation needs
|
||||
to be received by us within the appropriate deadline for
|
||||
the case. Anything you send to us must be clearly marked
|
||||
with the case reference number and the site address
|
||||
(including the postcode, where known).
|
||||
</p>
|
||||
<p>{t("myrepresentations:rep-complete-para-two")}</p>
|
||||
|
||||
<p>
|
||||
You will shortly receive confirmation to the email
|
||||
address you have provided.
|
||||
</p>
|
||||
<p> {t("myrepresentations:rep-complete-para-three")}</p>
|
||||
</div>
|
||||
<div className="govuk-grid-row">
|
||||
<div className="govuk-button-group">
|
||||
@@ -83,7 +71,7 @@ const RepComplete = (props) => {
|
||||
onClick={() => setRepresentationReset()}
|
||||
className="govuk-button"
|
||||
>
|
||||
Continue
|
||||
{t("common:continue-button")}
|
||||
</a>
|
||||
</Link>
|
||||
</div>
|
||||
|
||||
@@ -81,10 +81,17 @@ const RepCompleteSubmit = (props) => {
|
||||
<div id="rep-appellant">
|
||||
<div className="govuk-grid-column-full">
|
||||
<div className="govuk-grid-row govuk-body">
|
||||
<h1 className="govuk-heading-m ">Submit</h1>
|
||||
<h1 className="govuk-heading-m ">
|
||||
{" "}
|
||||
{t(
|
||||
"myrepresentations:rep-check-submit-heading"
|
||||
)}
|
||||
</h1>
|
||||
<dl className="govuk-summary-list ">
|
||||
<h2 className="govuk-heading-m govuk-!-margin-top-9">
|
||||
Your representation:
|
||||
{t(
|
||||
"myrepresentations:rep-check-your-rep-heading"
|
||||
)}
|
||||
</h2>
|
||||
<div className="govuk-summary-list__row">
|
||||
<dt className="govuk-summary-list__key">
|
||||
@@ -286,24 +293,21 @@ const RepCompleteSubmit = (props) => {
|
||||
{whichQuestionnaireCheck()}
|
||||
</dl>
|
||||
<p>
|
||||
The gathering and subsequent processing of the
|
||||
personal data supplied by you in this form, is
|
||||
in accordance with the terms of our registration
|
||||
under the Data Protection Act 2018.
|
||||
{t(
|
||||
"myrepresentations:rep-check-tandc-para-one"
|
||||
)}
|
||||
</p>
|
||||
|
||||
<p>
|
||||
The Planning Inspectorate takes its data
|
||||
protection responsibilities for the information
|
||||
you provide us with very seriously. To find out
|
||||
more about how we use and manage your personal
|
||||
data, please go to our privacy notice.
|
||||
{t(
|
||||
"myrepresentations:rep-check-tandc-para-two"
|
||||
)}
|
||||
</p>
|
||||
|
||||
<p>
|
||||
I confirm that all sections of this form have
|
||||
been fully completed and that the details are
|
||||
correct to the best of my knowledge.
|
||||
{t(
|
||||
"myrepresentations:rep-check-tandc-para-three"
|
||||
)}
|
||||
</p>
|
||||
|
||||
<div className="govuk-form-group">
|
||||
@@ -311,7 +315,10 @@ const RepCompleteSubmit = (props) => {
|
||||
className="govuk-label govuk-body-m"
|
||||
htmlFor="representationType"
|
||||
>
|
||||
I confirm I have read the above.
|
||||
{" "}
|
||||
{t(
|
||||
"myrepresentations:rep-check-tandc-para-four"
|
||||
)}
|
||||
</label>
|
||||
{/* <Field
|
||||
name="representationType"
|
||||
@@ -340,7 +347,7 @@ const RepCompleteSubmit = (props) => {
|
||||
}}
|
||||
className="govuk-button"
|
||||
>
|
||||
Continue
|
||||
{t("common:continue-button")}
|
||||
</a> */}
|
||||
|
||||
<a
|
||||
|
||||
@@ -109,14 +109,10 @@ const RepDetails = (props) => {
|
||||
</div>
|
||||
<div className="govuk-grid-row">
|
||||
<p className="govuk-body">
|
||||
This form enables you to submit comments on a case to
|
||||
Planning and Environment Decisions Wales.{" "}
|
||||
{t("myrepresentations:capacity-para-one")}
|
||||
</p>
|
||||
<p className="govuk-body">
|
||||
Please note that comments 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.
|
||||
{t("myrepresentations:capacity-para-two")}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -1002,16 +1002,14 @@ export function FileUploadField(props) {
|
||||
}
|
||||
|
||||
export const RepresentationGuidanceText = (appealType) => {
|
||||
let { t } = useTranslation();
|
||||
|
||||
console.log(appealType);
|
||||
switch (appealType) {
|
||||
case "846040004": //has/cas
|
||||
return (
|
||||
<p className="govuk-hint govuk-!-font-size-14 govuk-!-margin-top-5">
|
||||
Please note that all questionnaire documents may be
|
||||
published in line with our Publishing Policy. Should your
|
||||
questionnaire include any sensitive information or
|
||||
potentially defamatory information, it may be redacted
|
||||
before publishing.{" "}
|
||||
{t("myrepresentations:questionnaire-publish-policy-label")}{" "}
|
||||
<a href="https://gov.wales/planning-and-environment-decisions-wales-publishing-policy-html">
|
||||
https://gov.wales/planning-and-environment-decisions-wales-publishing-policy-html
|
||||
</a>
|
||||
@@ -1021,13 +1019,7 @@ export const RepresentationGuidanceText = (appealType) => {
|
||||
default:
|
||||
return (
|
||||
<p className="govuk-hint govuk-!-font-size-14 govuk-!-margin-top-5">
|
||||
Please note that all representations may be published in
|
||||
line with our Publishing Policy. Should your representation
|
||||
include any sensitive information or potentially defamatory
|
||||
information, it may be redacted before publishing. If it
|
||||
contains racist, libellous or offensive content it will be
|
||||
returned to you and you will be asked to provide an amended
|
||||
version.{" "}
|
||||
{t("myrepresentations:publish-policy-label")}{" "}
|
||||
<a href="https://gov.wales/planning-and-environment-decisions-wales-publishing-policy-html">
|
||||
https://gov.wales/planning-and-environment-decisions-wales-publishing-policy-html
|
||||
</a>
|
||||
|
||||
@@ -35,15 +35,19 @@ const RepInterestedPartyPerson = (props) => {
|
||||
<>
|
||||
<div className="govuk-grid-row">
|
||||
<h2 className="govuk-heading-m ">
|
||||
Representation from an Interested Party/Person
|
||||
{t(
|
||||
"myrepresentations:representation-from-an-interested-party-heading"
|
||||
)}
|
||||
</h2>
|
||||
|
||||
<div className="govuk-form-group">
|
||||
<label
|
||||
className="govuk-label govuk-body-m"
|
||||
htmlFor="representationType"
|
||||
>
|
||||
What kind of representation are you making?
|
||||
{t(
|
||||
"myrepresentations:representation-from-an-agent-heading"
|
||||
)}
|
||||
?
|
||||
</label>
|
||||
<Field
|
||||
name="representationType"
|
||||
@@ -78,15 +82,14 @@ const RepInterestedPartyPerson = (props) => {
|
||||
<div className="govuk-grid-row">
|
||||
<div className="govuk-form-group">
|
||||
<p className="govuk-body">
|
||||
You can enter your comments in the space provided or
|
||||
attach a separate document.
|
||||
{t("myrepresentations:enter-comment-label")}
|
||||
</p>
|
||||
<fieldset
|
||||
className="govuk-fieldset"
|
||||
aria-describedby="commentBox-hint"
|
||||
>
|
||||
<div id="commentBox-hint" className="govuk-hint">
|
||||
My comments are set out in:
|
||||
{t("myrepresentations:comments-set-out-label")}:
|
||||
</div>
|
||||
<div className="govuk-form-group">
|
||||
<Field
|
||||
@@ -103,7 +106,7 @@ const RepInterestedPartyPerson = (props) => {
|
||||
<div className="govuk-form-group govuk-!-margin-bottom-9">
|
||||
<FileUploadField
|
||||
name={"representationDocuments"}
|
||||
label={"Add your files"}
|
||||
label={t("myrepresentations:add-files-label")}
|
||||
ticketnumber={props.props.caseReference}
|
||||
hint={"sdsd"}
|
||||
fileList={[]}
|
||||
@@ -133,7 +136,7 @@ const RepInterestedPartyPerson = (props) => {
|
||||
}}
|
||||
className="govuk-button"
|
||||
>
|
||||
Continue
|
||||
{t("common:continue-button")}
|
||||
</a>
|
||||
</Link> */}
|
||||
<a
|
||||
|
||||
@@ -25,6 +25,9 @@ import jsonpath from "jsonpath";
|
||||
import { useState } from "react";
|
||||
import Enforcement_Questionnaire from "./representationQuestionnaires/representationLPAQuestionnaire_enforcement";
|
||||
import S78_Qquestionnaire from "./representationQuestionnaires/representationLPAQuestionnaire_s78";
|
||||
import { RepresentationProgress_s78 } from "./representationProgress/representationProgress_s78";
|
||||
import { RepresentationProgress_enforcement } from "./representationProgress/representationProgress_enforcement";
|
||||
import transLookup from "../../../data/lookuptranslations.json";
|
||||
|
||||
let RepLPA = (props) => {
|
||||
let { t } = useTranslation();
|
||||
@@ -102,6 +105,58 @@ let RepLPA = (props) => {
|
||||
}
|
||||
};
|
||||
|
||||
const whichProgress = () => {
|
||||
{
|
||||
console.log("curr");
|
||||
switch (currentView.caseReference.appealType) {
|
||||
case 846040000:
|
||||
case 846040001:
|
||||
case 846040006:
|
||||
case 846040025:
|
||||
case 846040004:
|
||||
case 846040018:
|
||||
case 846040003:
|
||||
case 846040009:
|
||||
case 846040008:
|
||||
return (
|
||||
<RepresentationProgress_s78
|
||||
props={props}
|
||||
containerID={
|
||||
props.props.props.accountDetails.containerID
|
||||
}
|
||||
currentView={currentView}
|
||||
showQuestionnaireSection={showQuestionnaireSection}
|
||||
setShowQuestionnaireSection={
|
||||
setShowQuestionnaireSection
|
||||
}
|
||||
/>
|
||||
);
|
||||
break;
|
||||
|
||||
case 846040005:
|
||||
case 846040006:
|
||||
case 846040007:
|
||||
return (
|
||||
<RepresentationProgress_enforcement
|
||||
props={props}
|
||||
containerID={
|
||||
props.props.props.accountDetails.containerID
|
||||
}
|
||||
currentView={currentView}
|
||||
showQuestionnaireSection={showQuestionnaireSection}
|
||||
setShowQuestionnaireSection={
|
||||
setShowQuestionnaireSection
|
||||
}
|
||||
/>
|
||||
);
|
||||
break;
|
||||
default:
|
||||
return <>hello</>;
|
||||
break;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
let setCaseDetailsObj = router.query.hasOwnProperty("state")
|
||||
? router.query.state == "edit"
|
||||
? props.props.myRepresentations.myRepresentations
|
||||
@@ -142,14 +197,25 @@ let RepLPA = (props) => {
|
||||
<div className="govuk-grid-row">
|
||||
<h2 className="govuk-heading-m ">
|
||||
{typeof props.representationType != "undefined"
|
||||
? props.representationType
|
||||
? props.representationType == "Questionnaire"
|
||||
? locale == "cy"
|
||||
? "Holiadur"
|
||||
: props.representationType
|
||||
: props.representationType
|
||||
: locale == "cy"
|
||||
? "Cynrychioliadau"
|
||||
: "Representation"}{" "}
|
||||
from an LPA for a{" "}
|
||||
{
|
||||
getFormCollectionByID(
|
||||
currentView.caseReference.appealType
|
||||
).value
|
||||
}
|
||||
{locale == "cy" ? "o ACLI am a" : "from an LPA for a"}{" "}
|
||||
{locale == "cy"
|
||||
? jsonpath.query(
|
||||
transLookup,
|
||||
'$..[?(@.attributevalue=="' +
|
||||
currentView.caseReference.appealType +
|
||||
'")].value_cy'
|
||||
)
|
||||
: getFormCollectionByID(
|
||||
currentView.caseReference.appealType
|
||||
).value}
|
||||
</h2>
|
||||
|
||||
{typeof props.representationType == "undefined" && (
|
||||
@@ -158,7 +224,10 @@ let RepLPA = (props) => {
|
||||
className="govuk-label govuk-body-m"
|
||||
htmlFor="representationType"
|
||||
>
|
||||
What kind of representation are you making?
|
||||
{t(
|
||||
"myrepresentations:representation-from-an-agent-heading"
|
||||
)}
|
||||
?
|
||||
</label>
|
||||
<Field
|
||||
id="representationType"
|
||||
@@ -177,8 +246,7 @@ let RepLPA = (props) => {
|
||||
(props.representationType != "Questionnaire" ? (
|
||||
<>
|
||||
<p className="govuk-body">
|
||||
You can enter your comments in the space
|
||||
provided or attach a separate document.
|
||||
{t("myrepresentations:enter-comment-label")}
|
||||
</p>
|
||||
<fieldset
|
||||
className="govuk-fieldset"
|
||||
@@ -188,7 +256,10 @@ let RepLPA = (props) => {
|
||||
id="commentBox-hint"
|
||||
className="govuk-hint"
|
||||
>
|
||||
My comments are set out in:
|
||||
{t(
|
||||
"myrepresentations:comments-set-out-label"
|
||||
)}
|
||||
:
|
||||
</div>
|
||||
<div className="govuk-form-group">
|
||||
<Field
|
||||
@@ -212,7 +283,9 @@ let RepLPA = (props) => {
|
||||
<div className="govuk-form-group govuk-!-margin-bottom-9">
|
||||
<FileUploadField
|
||||
name={"representationDocuments"}
|
||||
label={"Add your files"}
|
||||
label={t(
|
||||
"myrepresentations:add-files-label"
|
||||
)}
|
||||
ticketnumber={
|
||||
props.props.caseReference
|
||||
}
|
||||
@@ -256,7 +329,7 @@ let RepLPA = (props) => {
|
||||
className="govuk-button"
|
||||
data-module="govuk-button"
|
||||
>
|
||||
Continue
|
||||
{t("common:continue-button")}
|
||||
</button>
|
||||
)}
|
||||
{showQuestionnaireSection > 1 && (
|
||||
@@ -281,7 +354,7 @@ let RepLPA = (props) => {
|
||||
className="govuk-button"
|
||||
data-module="govuk-button"
|
||||
>
|
||||
Continue
|
||||
{t("common:continue-button")}
|
||||
</button>
|
||||
{/* <a
|
||||
onClick={() => {
|
||||
@@ -290,7 +363,7 @@ let RepLPA = (props) => {
|
||||
}}
|
||||
className="govuk-button"
|
||||
>
|
||||
Continue
|
||||
{t("common:continue-button")}
|
||||
</a> */}
|
||||
<a
|
||||
onClick={() => {
|
||||
@@ -298,7 +371,7 @@ let RepLPA = (props) => {
|
||||
}}
|
||||
className="govuk-link"
|
||||
>
|
||||
Back
|
||||
{t("common:back-link")}
|
||||
</a>
|
||||
</>
|
||||
)}
|
||||
|
||||
@@ -64,7 +64,7 @@ let RepLPACapacitySelection = (props) => {
|
||||
<Field
|
||||
name="representationCapacity"
|
||||
datafieldname="representationCapacity"
|
||||
label="In what capacity do you wish to make representations on this case?"
|
||||
label={t("myrepresentations:capacity-select-what-capacity-label")}
|
||||
options={["LPA"]}
|
||||
id="representationCapacity"
|
||||
//className="govuk-radios__input "
|
||||
|
||||
@@ -19,15 +19,14 @@ let RepLPAQuestionnaire = (props) => {
|
||||
return (
|
||||
<>
|
||||
<p className="govuk-body">
|
||||
You can enter your comments in the space provided or attach a
|
||||
separate document.
|
||||
{t("myrepresentations:enter-comment-label")}
|
||||
</p>
|
||||
<fieldset
|
||||
className="govuk-fieldset"
|
||||
aria-describedby="commentBox-hint"
|
||||
>
|
||||
<div id="commentBox-hint" className="govuk-hint">
|
||||
My comments are set out in: vcc
|
||||
{t("myrepresentations:comments-set-out-label")}:
|
||||
</div>
|
||||
<div className="govuk-form-group">
|
||||
<Field
|
||||
|
||||
@@ -94,9 +94,7 @@ const RepLPADetails = (props) => {
|
||||
</div>
|
||||
<div className="govuk-grid-row">
|
||||
<p className="govuk-body">
|
||||
This form enables you to submit statements, comments and
|
||||
questionaires on a case to Planning and Environment
|
||||
Decisions Wales.{" "}
|
||||
{t("myrepresentations:lpa-capacity-para-one")}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -47,7 +47,10 @@ const RepLandOwner = (props) => {
|
||||
className="govuk-label govuk-body-m"
|
||||
htmlFor="representationType"
|
||||
>
|
||||
What kind of representation are you making?
|
||||
{t(
|
||||
"myrepresentations:representation-from-an-agent-heading"
|
||||
)}
|
||||
?
|
||||
</label>
|
||||
<Field
|
||||
name="representationType"
|
||||
@@ -75,15 +78,14 @@ const RepLandOwner = (props) => {
|
||||
<div className="govuk-grid-row">
|
||||
<div className="govuk-form-group">
|
||||
<p className="govuk-body">
|
||||
You can enter your comments in the space provided or
|
||||
attach a separate document.
|
||||
{t("myrepresentations:enter-comment-label")}
|
||||
</p>
|
||||
<fieldset
|
||||
className="govuk-fieldset"
|
||||
aria-describedby="commentBox-hint"
|
||||
>
|
||||
<div id="commentBox-hint" className="govuk-hint">
|
||||
My comments are set out in:
|
||||
{t("myrepresentations:comments-set-out-label")}:
|
||||
</div>
|
||||
<div className="govuk-form-group">
|
||||
<Field
|
||||
@@ -100,7 +102,9 @@ const RepLandOwner = (props) => {
|
||||
<div className="govuk-form-group govuk-!-margin-bottom-9">
|
||||
<FileUploadField
|
||||
name={"representationDocuments"}
|
||||
label={"Add your files"}
|
||||
label={t(
|
||||
"myrepresentations:add-files-label"
|
||||
)}
|
||||
ticketnumber={props.props.caseReference}
|
||||
hint={"sdsd"}
|
||||
fileList={[]}
|
||||
@@ -122,7 +126,7 @@ const RepLandOwner = (props) => {
|
||||
className="govuk-button"
|
||||
data-module="govuk-button"
|
||||
>
|
||||
Continue
|
||||
{t("common:continue-button")}
|
||||
</button>
|
||||
{/* <Link href="/representation">
|
||||
<a
|
||||
@@ -131,7 +135,7 @@ const RepLandOwner = (props) => {
|
||||
}}
|
||||
className="govuk-button"
|
||||
>
|
||||
Continue
|
||||
{t("common:continue-button")}
|
||||
</a>
|
||||
</Link> */}
|
||||
<a
|
||||
@@ -140,7 +144,7 @@ const RepLandOwner = (props) => {
|
||||
}}
|
||||
className="govuk-link"
|
||||
>
|
||||
Back
|
||||
{t("common:back-link")}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
+540
@@ -0,0 +1,540 @@
|
||||
import Link from "next/link";
|
||||
import { useRouter } from "next/router";
|
||||
import useTranslation from "next-translate/useTranslation";
|
||||
import { connect } from "react-redux";
|
||||
import { Field, reduxForm, formValueSelector } from "redux-form";
|
||||
import {
|
||||
RenderPickList,
|
||||
RenderTextfield,
|
||||
RenderRadioList,
|
||||
RenderMultiline,
|
||||
RenderCondtionalRadioList,
|
||||
RenderLPACondtionalRadioList,
|
||||
FileUploadField,
|
||||
RenderRichMultiline,
|
||||
RenderDatePicker,
|
||||
} from "../representationElements";
|
||||
import {
|
||||
setRepresentationCapacity,
|
||||
setRepresentationSubmit,
|
||||
} from "../../../../store/currentView/action";
|
||||
import { useDropzone } from "react-dropzone";
|
||||
import { select } from "xpath";
|
||||
import jsonpath from "jsonpath";
|
||||
|
||||
const RepresentationProgress_enforcement = (props) => {
|
||||
let { t } = useTranslation();
|
||||
const router = useRouter();
|
||||
const {
|
||||
formObj,
|
||||
appellantApplicantRepresentationArr,
|
||||
setRepresentationCapacity,
|
||||
setRepresentationSubmit,
|
||||
currentView,
|
||||
procedureTypeValue,
|
||||
onBehalfOfLPA,
|
||||
setShowQuestionnaireSection,
|
||||
showQuestionnaireSection,
|
||||
} = props;
|
||||
|
||||
return (
|
||||
<nav
|
||||
role="navigation"
|
||||
aria-labelledby="progress-list"
|
||||
className="at-nav"
|
||||
>
|
||||
<div
|
||||
id="step-by-step-navigation"
|
||||
data-module="gemstepnav"
|
||||
className="app-step-nav app-step-nav--active"
|
||||
data-id="e01e924b-9c7c-4c71-8241-66a575c2f61f"
|
||||
data-show-text="show"
|
||||
data-hide-text="hide"
|
||||
data-show-all-text="Show all"
|
||||
data-hide-all-text="Hide all"
|
||||
>
|
||||
<ol className="app-step-nav__steps">
|
||||
<li
|
||||
className={
|
||||
"app-step-nav__step js-step app-step-nav__step--active" +
|
||||
(showQuestionnaireSection >= 1
|
||||
? " sectionComplete"
|
||||
: " sectionIncomplete")
|
||||
}
|
||||
aria-current="step"
|
||||
data-show=""
|
||||
id="check-youre-allowed-to-drive"
|
||||
>
|
||||
<div
|
||||
className="app-step-nav__header js-toggle-panel "
|
||||
data-position="1"
|
||||
>
|
||||
<h3 className="app-step-nav__title ">
|
||||
<span className="app-step-nav__circle app-step-nav__circle--number">
|
||||
<span className="app-step-nav__circle-inner">
|
||||
<span className="app-step-nav__circle-background">
|
||||
<span className="app-step-nav__circle-step-label govuk-visually-hidden">
|
||||
Step
|
||||
</span>{" "}
|
||||
1
|
||||
<span
|
||||
className="app-step-nav__circle-step-colon govuk-visually-hidden"
|
||||
aria-hidden="true"
|
||||
>
|
||||
:
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<span className="js-step-title">
|
||||
<a
|
||||
href="#"
|
||||
onClick={() => {
|
||||
setShowQuestionnaireSection(1);
|
||||
}}
|
||||
className="app-step-nav__button app-step-nav__button--title js-step-title-button"
|
||||
aria-expanded="false"
|
||||
aria-controls="step-panel-check-youre-allowed-to-drive-1"
|
||||
>
|
||||
<span className="js-step-title-text govuk-!-font-size-16">
|
||||
{t(
|
||||
"myrepresentations:enf-section-heading-one"
|
||||
)}
|
||||
</span>
|
||||
</a>
|
||||
</span>
|
||||
</h3>
|
||||
</div>
|
||||
</li>
|
||||
<li
|
||||
className={
|
||||
"app-step-nav__step js-step app-step-nav__step--active" +
|
||||
(showQuestionnaireSection >= 2
|
||||
? " sectionComplete"
|
||||
: " sectionIncomplete")
|
||||
}
|
||||
aria-current="step"
|
||||
data-show=""
|
||||
id="check-youre-allowed-to-drive"
|
||||
>
|
||||
<div
|
||||
className="app-step-nav__header js-toggle-panel "
|
||||
data-position="1"
|
||||
>
|
||||
<h3 className="app-step-nav__title ">
|
||||
<span className="app-step-nav__circle app-step-nav__circle--number">
|
||||
<span className="app-step-nav__circle-inner">
|
||||
<span className="app-step-nav__circle-background">
|
||||
<span className="app-step-nav__circle-step-label govuk-visually-hidden">
|
||||
Step
|
||||
</span>{" "}
|
||||
2
|
||||
<span
|
||||
className="app-step-nav__circle-step-colon govuk-visually-hidden"
|
||||
aria-hidden="true"
|
||||
>
|
||||
:
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<span className="js-step-title">
|
||||
<a
|
||||
href="#"
|
||||
onClick={() => {
|
||||
setShowQuestionnaireSection(2);
|
||||
}}
|
||||
className="app-step-nav__button app-step-nav__button--title js-step-title-button"
|
||||
aria-expanded="false"
|
||||
aria-controls="step-panel-check-youre-allowed-to-drive-1"
|
||||
>
|
||||
<span className="js-step-title-text govuk-!-font-size-16">
|
||||
{t(
|
||||
"myrepresentations:enf-section-heading-two"
|
||||
)}
|
||||
</span>
|
||||
</a>
|
||||
</span>
|
||||
</h3>
|
||||
</div>
|
||||
</li>
|
||||
<li
|
||||
className={
|
||||
"app-step-nav__step js-step app-step-nav__step--active" +
|
||||
(showQuestionnaireSection >= 3
|
||||
? " sectionComplete"
|
||||
: " sectionIncomplete")
|
||||
}
|
||||
aria-current="step"
|
||||
data-show=""
|
||||
id="check-youre-allowed-to-drive"
|
||||
>
|
||||
<div
|
||||
className="app-step-nav__header js-toggle-panel "
|
||||
data-position="1"
|
||||
>
|
||||
<h3 className="app-step-nav__title ">
|
||||
<span className="app-step-nav__circle app-step-nav__circle--number">
|
||||
<span className="app-step-nav__circle-inner">
|
||||
<span className="app-step-nav__circle-background">
|
||||
<span className="app-step-nav__circle-step-label govuk-visually-hidden">
|
||||
Step
|
||||
</span>{" "}
|
||||
3
|
||||
<span
|
||||
className="app-step-nav__circle-step-colon govuk-visually-hidden"
|
||||
aria-hidden="true"
|
||||
>
|
||||
:
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<span className="js-step-title">
|
||||
<a
|
||||
href="#"
|
||||
onClick={() => {
|
||||
setShowQuestionnaireSection(3);
|
||||
}}
|
||||
className="app-step-nav__button app-step-nav__button--title js-step-title-button"
|
||||
aria-expanded="false"
|
||||
aria-controls="step-panel-check-youre-allowed-to-drive-1"
|
||||
>
|
||||
<span className="js-step-title-text govuk-!-font-size-16">
|
||||
{t(
|
||||
"myrepresentations:enf-section-heading-three"
|
||||
)}
|
||||
</span>
|
||||
</a>
|
||||
</span>
|
||||
</h3>
|
||||
</div>
|
||||
</li>
|
||||
<li
|
||||
className={
|
||||
"app-step-nav__step js-step app-step-nav__step--active" +
|
||||
(showQuestionnaireSection >= 4
|
||||
? " sectionComplete"
|
||||
: " sectionIncomplete")
|
||||
}
|
||||
aria-current="step"
|
||||
data-show=""
|
||||
id="check-youre-allowed-to-drive"
|
||||
>
|
||||
<div
|
||||
className="app-step-nav__header js-toggle-panel "
|
||||
data-position="1"
|
||||
>
|
||||
<h3 className="app-step-nav__title ">
|
||||
<span className="app-step-nav__circle app-step-nav__circle--number">
|
||||
<span className="app-step-nav__circle-inner">
|
||||
<span className="app-step-nav__circle-background">
|
||||
<span className="app-step-nav__circle-step-label govuk-visually-hidden">
|
||||
Step
|
||||
</span>{" "}
|
||||
4
|
||||
<span
|
||||
className="app-step-nav__circle-step-colon govuk-visually-hidden"
|
||||
aria-hidden="true"
|
||||
>
|
||||
:
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<span className="js-step-title">
|
||||
<a
|
||||
href="#"
|
||||
onClick={() => {
|
||||
setShowQuestionnaireSection(4);
|
||||
}}
|
||||
className="app-step-nav__button app-step-nav__button--title js-step-title-button"
|
||||
aria-expanded="false"
|
||||
aria-controls="step-panel-check-youre-allowed-to-drive-1"
|
||||
>
|
||||
<span className="js-step-title-text govuk-!-font-size-16">
|
||||
{t(
|
||||
"myrepresentations:enf-section-heading-four"
|
||||
)}
|
||||
</span>
|
||||
</a>
|
||||
</span>
|
||||
</h3>
|
||||
</div>
|
||||
</li>
|
||||
<li
|
||||
className={
|
||||
"app-step-nav__step js-step app-step-nav__step--active" +
|
||||
(showQuestionnaireSection >= 5
|
||||
? " sectionComplete"
|
||||
: " sectionIncomplete")
|
||||
}
|
||||
aria-current="step"
|
||||
data-show=""
|
||||
id="check-youre-allowed-to-drive"
|
||||
>
|
||||
<div
|
||||
className="app-step-nav__header js-toggle-panel "
|
||||
data-position="1"
|
||||
>
|
||||
<h3 className="app-step-nav__title ">
|
||||
<span className="app-step-nav__circle app-step-nav__circle--number">
|
||||
<span className="app-step-nav__circle-inner">
|
||||
<span className="app-step-nav__circle-background">
|
||||
<span className="app-step-nav__circle-step-label govuk-visually-hidden">
|
||||
Step
|
||||
</span>{" "}
|
||||
5
|
||||
<span
|
||||
className="app-step-nav__circle-step-colon govuk-visually-hidden"
|
||||
aria-hidden="true"
|
||||
>
|
||||
:
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<span className="js-step-title">
|
||||
<a
|
||||
href="#"
|
||||
onClick={() => {
|
||||
setShowQuestionnaireSection(5);
|
||||
}}
|
||||
className="app-step-nav__button app-step-nav__button--title js-step-title-button"
|
||||
aria-expanded="false"
|
||||
aria-controls="step-panel-check-youre-allowed-to-drive-1"
|
||||
>
|
||||
<span className="js-step-title-text govuk-!-font-size-16">
|
||||
{t(
|
||||
"myrepresentations:enf-section-heading-five"
|
||||
)}
|
||||
</span>
|
||||
</a>
|
||||
</span>
|
||||
</h3>
|
||||
</div>
|
||||
</li>
|
||||
<li
|
||||
className={
|
||||
"app-step-nav__step js-step app-step-nav__step--active" +
|
||||
(showQuestionnaireSection >= 6
|
||||
? " sectionComplete"
|
||||
: " sectionIncomplete")
|
||||
}
|
||||
aria-current="step"
|
||||
data-show=""
|
||||
id="check-youre-allowed-to-drive"
|
||||
>
|
||||
<div
|
||||
className="app-step-nav__header js-toggle-panel "
|
||||
data-position="1"
|
||||
>
|
||||
<h3 className="app-step-nav__title ">
|
||||
<span className="app-step-nav__circle app-step-nav__circle--number">
|
||||
<span className="app-step-nav__circle-inner">
|
||||
<span className="app-step-nav__circle-background">
|
||||
<span className="app-step-nav__circle-step-label govuk-visually-hidden">
|
||||
Step
|
||||
</span>{" "}
|
||||
6
|
||||
<span
|
||||
className="app-step-nav__circle-step-colon govuk-visually-hidden"
|
||||
aria-hidden="true"
|
||||
>
|
||||
:
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<span className="js-step-title">
|
||||
<a
|
||||
href="#"
|
||||
onClick={() => {
|
||||
setShowQuestionnaireSection(6);
|
||||
}}
|
||||
className="app-step-nav__button app-step-nav__button--title js-step-title-button"
|
||||
aria-expanded="false"
|
||||
aria-controls="step-panel-check-youre-allowed-to-drive-1"
|
||||
>
|
||||
<span className="js-step-title-text govuk-!-font-size-16">
|
||||
{t(
|
||||
"myrepresentations:enf-section-heading-six"
|
||||
)}
|
||||
</span>
|
||||
</a>
|
||||
</span>
|
||||
</h3>
|
||||
</div>
|
||||
</li>{" "}
|
||||
<li
|
||||
className={
|
||||
"app-step-nav__step js-step app-step-nav__step--active" +
|
||||
(showQuestionnaireSection >= 7
|
||||
? " sectionComplete"
|
||||
: " sectionIncomplete")
|
||||
}
|
||||
aria-current="step"
|
||||
data-show=""
|
||||
id="check-youre-allowed-to-drive"
|
||||
>
|
||||
<div
|
||||
className="app-step-nav__header js-toggle-panel "
|
||||
data-position="1"
|
||||
>
|
||||
<h3 className="app-step-nav__title ">
|
||||
<span className="app-step-nav__circle app-step-nav__circle--number">
|
||||
<span className="app-step-nav__circle-inner">
|
||||
<span className="app-step-nav__circle-background">
|
||||
<span className="app-step-nav__circle-step-label govuk-visually-hidden">
|
||||
Step
|
||||
</span>{" "}
|
||||
7
|
||||
<span
|
||||
className="app-step-nav__circle-step-colon govuk-visually-hidden"
|
||||
aria-hidden="true"
|
||||
>
|
||||
:
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<span className="js-step-title">
|
||||
<a
|
||||
href="#"
|
||||
onClick={() => {
|
||||
setShowQuestionnaireSection(7);
|
||||
}}
|
||||
className="app-step-nav__button app-step-nav__button--title js-step-title-button"
|
||||
aria-expanded="false"
|
||||
aria-controls="step-panel-check-youre-allowed-to-drive-1"
|
||||
>
|
||||
<span className="js-step-title-text govuk-!-font-size-16">
|
||||
{t(
|
||||
"myrepresentations:enf-section-heading-seven"
|
||||
)}
|
||||
</span>
|
||||
</a>
|
||||
</span>
|
||||
</h3>
|
||||
</div>
|
||||
</li>
|
||||
<li
|
||||
className={
|
||||
"app-step-nav__step js-step app-step-nav__step--active" +
|
||||
(showQuestionnaireSection >= 8
|
||||
? " sectionComplete"
|
||||
: " sectionIncomplete")
|
||||
}
|
||||
aria-current="step"
|
||||
data-show=""
|
||||
id="check-youre-allowed-to-drive"
|
||||
>
|
||||
<div
|
||||
className="app-step-nav__header js-toggle-panel "
|
||||
data-position="1"
|
||||
>
|
||||
<h3 className="app-step-nav__title ">
|
||||
<span className="app-step-nav__circle app-step-nav__circle--number">
|
||||
<span className="app-step-nav__circle-inner">
|
||||
<span className="app-step-nav__circle-background">
|
||||
<span className="app-step-nav__circle-step-label govuk-visually-hidden">
|
||||
Step
|
||||
</span>{" "}
|
||||
8
|
||||
<span
|
||||
className="app-step-nav__circle-step-colon govuk-visually-hidden"
|
||||
aria-hidden="true"
|
||||
>
|
||||
:
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<span className="js-step-title">
|
||||
<a
|
||||
href="#"
|
||||
onClick={() => {
|
||||
setShowQuestionnaireSection(8);
|
||||
}}
|
||||
className="app-step-nav__button app-step-nav__button--title js-step-title-button"
|
||||
aria-expanded="false"
|
||||
aria-controls="step-panel-check-youre-allowed-to-drive-1"
|
||||
>
|
||||
<span className="js-step-title-text govuk-!-font-size-16">
|
||||
{t(
|
||||
"myrepresentations:add-files-label"
|
||||
)}
|
||||
</span>
|
||||
</a>
|
||||
</span>
|
||||
</h3>
|
||||
</div>
|
||||
</li>
|
||||
<li
|
||||
className={
|
||||
"app-step-nav__step js-step app-step-nav__step--active" +
|
||||
(showQuestionnaireSection >= 9
|
||||
? " sectionComplete"
|
||||
: " sectionIncomplete")
|
||||
}
|
||||
aria-current="step"
|
||||
data-show=""
|
||||
id="check-youre-allowed-to-drive"
|
||||
>
|
||||
<div
|
||||
className="app-step-nav__header js-toggle-panel "
|
||||
data-position="1"
|
||||
>
|
||||
<h3 className="app-step-nav__title ">
|
||||
<span className="app-step-nav__circle app-step-nav__circle--number">
|
||||
<span className="app-step-nav__circle-inner">
|
||||
<span className="app-step-nav__circle-background">
|
||||
<span className="app-step-nav__circle-step-label govuk-visually-hidden">
|
||||
Step
|
||||
</span>{" "}
|
||||
9
|
||||
<span
|
||||
className="app-step-nav__circle-step-colon govuk-visually-hidden"
|
||||
aria-hidden="true"
|
||||
>
|
||||
:
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<span className="js-step-title">
|
||||
<a
|
||||
href="#"
|
||||
onClick={() => {
|
||||
setShowQuestionnaireSection(9);
|
||||
}}
|
||||
className="app-step-nav__button app-step-nav__button--title js-step-title-button"
|
||||
aria-expanded="false"
|
||||
aria-controls="step-panel-check-youre-allowed-to-drive-1"
|
||||
>
|
||||
<span className="js-step-title-text govuk-!-font-size-16">
|
||||
{t(
|
||||
"myrepresentations:enf-section-heading-eight"
|
||||
)}
|
||||
</span>
|
||||
</a>
|
||||
</span>
|
||||
</h3>
|
||||
</div>
|
||||
</li>
|
||||
</ol>
|
||||
</div>
|
||||
</nav>
|
||||
);
|
||||
};
|
||||
|
||||
export default RepresentationProgress_enforcement;
|
||||
@@ -0,0 +1,435 @@
|
||||
import Link from "next/link";
|
||||
import { useRouter } from "next/router";
|
||||
import useTranslation from "next-translate/useTranslation";
|
||||
import { connect } from "react-redux";
|
||||
import { Field, reduxForm, formValueSelector } from "redux-form";
|
||||
import {
|
||||
RenderPickList,
|
||||
RenderTextfield,
|
||||
RenderRadioList,
|
||||
RenderMultiline,
|
||||
RenderCondtionalRadioList,
|
||||
RenderLPACondtionalRadioList,
|
||||
FileUploadField,
|
||||
RenderRichMultiline,
|
||||
RenderDatePicker,
|
||||
} from "../representationElements";
|
||||
import {
|
||||
setRepresentationCapacity,
|
||||
setRepresentationSubmit,
|
||||
} from "../../../../store/currentView/action";
|
||||
import { useDropzone } from "react-dropzone";
|
||||
import { select } from "xpath";
|
||||
import jsonpath from "jsonpath";
|
||||
|
||||
const RepresentationProgress_s78 = (props) => {
|
||||
let { t } = useTranslation();
|
||||
const router = useRouter();
|
||||
|
||||
const {
|
||||
formObj,
|
||||
appellantApplicantRepresentationArr,
|
||||
setRepresentationCapacity,
|
||||
setRepresentationSubmit,
|
||||
currentView,
|
||||
procedureTypeValue,
|
||||
onBehalfOfLPA,
|
||||
setShowQuestionnaireSection,
|
||||
showQuestionnaireSection,
|
||||
} = props;
|
||||
|
||||
return (
|
||||
<nav
|
||||
role="navigation"
|
||||
aria-labelledby="progress-list"
|
||||
className="at-nav"
|
||||
>
|
||||
<div
|
||||
id="step-by-step-navigation"
|
||||
data-module="gemstepnav"
|
||||
className="app-step-nav app-step-nav--active"
|
||||
data-id="e01e924b-9c7c-4c71-8241-66a575c2f61f"
|
||||
data-show-text="show"
|
||||
data-hide-text="hide"
|
||||
data-show-all-text="Show all"
|
||||
data-hide-all-text="Hide all"
|
||||
>
|
||||
<ol className="app-step-nav__steps">
|
||||
<li
|
||||
className={
|
||||
"app-step-nav__step js-step app-step-nav__step--active" +
|
||||
(showQuestionnaireSection >= 1
|
||||
? " sectionComplete"
|
||||
: " sectionIncomplete")
|
||||
}
|
||||
aria-current="step"
|
||||
data-show=""
|
||||
id="check-youre-allowed-to-drive"
|
||||
>
|
||||
<div
|
||||
className="app-step-nav__header js-toggle-panel "
|
||||
data-position="1"
|
||||
>
|
||||
<h3 className="app-step-nav__title ">
|
||||
<span className="app-step-nav__circle app-step-nav__circle--number">
|
||||
<span className="app-step-nav__circle-inner">
|
||||
<span className="app-step-nav__circle-background">
|
||||
<span className="app-step-nav__circle-step-label govuk-visually-hidden">
|
||||
Step
|
||||
</span>{" "}
|
||||
1
|
||||
<span
|
||||
className="app-step-nav__circle-step-colon govuk-visually-hidden"
|
||||
aria-hidden="true"
|
||||
>
|
||||
:
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<span className="js-step-title">
|
||||
<a
|
||||
href="#"
|
||||
onClick={() => {
|
||||
setShowQuestionnaireSection(1);
|
||||
}}
|
||||
className="app-step-nav__button app-step-nav__button--title js-step-title-button"
|
||||
aria-expanded="false"
|
||||
aria-controls="step-panel-check-youre-allowed-to-drive-1"
|
||||
>
|
||||
<span className="js-step-title-text govuk-!-font-size-16">
|
||||
{t(
|
||||
"myrepresentations:s78-section-heading-one"
|
||||
)}
|
||||
</span>
|
||||
</a>
|
||||
</span>
|
||||
</h3>
|
||||
</div>
|
||||
</li>
|
||||
<li
|
||||
className={
|
||||
"app-step-nav__step js-step app-step-nav__step--active" +
|
||||
(showQuestionnaireSection >= 2
|
||||
? " sectionComplete"
|
||||
: " sectionIncomplete")
|
||||
}
|
||||
aria-current="step"
|
||||
data-show=""
|
||||
id="check-youre-allowed-to-drive"
|
||||
>
|
||||
<div
|
||||
className="app-step-nav__header js-toggle-panel "
|
||||
data-position="1"
|
||||
>
|
||||
<h3 className="app-step-nav__title ">
|
||||
<span className="app-step-nav__circle app-step-nav__circle--number">
|
||||
<span className="app-step-nav__circle-inner">
|
||||
<span className="app-step-nav__circle-background">
|
||||
<span className="app-step-nav__circle-step-label govuk-visually-hidden">
|
||||
Step
|
||||
</span>{" "}
|
||||
2
|
||||
<span
|
||||
className="app-step-nav__circle-step-colon govuk-visually-hidden"
|
||||
aria-hidden="true"
|
||||
>
|
||||
:
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<span className="js-step-title">
|
||||
<a
|
||||
href="#"
|
||||
onClick={() => {
|
||||
setShowQuestionnaireSection(2);
|
||||
}}
|
||||
className="app-step-nav__button app-step-nav__button--title js-step-title-button"
|
||||
aria-expanded="false"
|
||||
aria-controls="step-panel-check-youre-allowed-to-drive-1"
|
||||
>
|
||||
<span className="js-step-title-text govuk-!-font-size-16">
|
||||
{t(
|
||||
"myrepresentations:s78-section-heading-two"
|
||||
)}
|
||||
</span>
|
||||
</a>
|
||||
</span>
|
||||
</h3>
|
||||
</div>
|
||||
</li>
|
||||
<li
|
||||
className={
|
||||
"app-step-nav__step js-step app-step-nav__step--active" +
|
||||
(showQuestionnaireSection >= 3
|
||||
? " sectionComplete"
|
||||
: " sectionIncomplete")
|
||||
}
|
||||
aria-current="step"
|
||||
data-show=""
|
||||
id="check-youre-allowed-to-drive"
|
||||
>
|
||||
<div
|
||||
className="app-step-nav__header js-toggle-panel "
|
||||
data-position="1"
|
||||
>
|
||||
<h3 className="app-step-nav__title ">
|
||||
<span className="app-step-nav__circle app-step-nav__circle--number">
|
||||
<span className="app-step-nav__circle-inner">
|
||||
<span className="app-step-nav__circle-background">
|
||||
<span className="app-step-nav__circle-step-label govuk-visually-hidden">
|
||||
Step
|
||||
</span>{" "}
|
||||
3
|
||||
<span
|
||||
className="app-step-nav__circle-step-colon govuk-visually-hidden"
|
||||
aria-hidden="true"
|
||||
>
|
||||
:
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<span className="js-step-title">
|
||||
<a
|
||||
href="#"
|
||||
onClick={() => {
|
||||
setShowQuestionnaireSection(3);
|
||||
}}
|
||||
className="app-step-nav__button app-step-nav__button--title js-step-title-button"
|
||||
aria-expanded="false"
|
||||
aria-controls="step-panel-check-youre-allowed-to-drive-1"
|
||||
>
|
||||
<span className="js-step-title-text govuk-!-font-size-16">
|
||||
{t(
|
||||
"myrepresentations:s78-section-heading-three"
|
||||
)}
|
||||
</span>
|
||||
</a>
|
||||
</span>
|
||||
</h3>
|
||||
</div>
|
||||
</li>
|
||||
<li
|
||||
className={
|
||||
"app-step-nav__step js-step app-step-nav__step--active" +
|
||||
(showQuestionnaireSection >= 4
|
||||
? " sectionComplete"
|
||||
: " sectionIncomplete")
|
||||
}
|
||||
aria-current="step"
|
||||
data-show=""
|
||||
id="check-youre-allowed-to-drive"
|
||||
>
|
||||
<div
|
||||
className="app-step-nav__header js-toggle-panel "
|
||||
data-position="1"
|
||||
>
|
||||
<h3 className="app-step-nav__title ">
|
||||
<span className="app-step-nav__circle app-step-nav__circle--number">
|
||||
<span className="app-step-nav__circle-inner">
|
||||
<span className="app-step-nav__circle-background">
|
||||
<span className="app-step-nav__circle-step-label govuk-visually-hidden">
|
||||
Step
|
||||
</span>{" "}
|
||||
4
|
||||
<span
|
||||
className="app-step-nav__circle-step-colon govuk-visually-hidden"
|
||||
aria-hidden="true"
|
||||
>
|
||||
:
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<span className="js-step-title">
|
||||
<a
|
||||
href="#"
|
||||
onClick={() => {
|
||||
setShowQuestionnaireSection(4);
|
||||
}}
|
||||
className="app-step-nav__button app-step-nav__button--title js-step-title-button"
|
||||
aria-expanded="false"
|
||||
aria-controls="step-panel-check-youre-allowed-to-drive-1"
|
||||
>
|
||||
<span className="js-step-title-text govuk-!-font-size-16">
|
||||
{t(
|
||||
"myrepresentations:s78-section-heading-four"
|
||||
)}
|
||||
</span>
|
||||
</a>
|
||||
</span>
|
||||
</h3>
|
||||
</div>
|
||||
</li>
|
||||
<li
|
||||
className={
|
||||
"app-step-nav__step js-step app-step-nav__step--active" +
|
||||
(showQuestionnaireSection >= 5
|
||||
? " sectionComplete"
|
||||
: " sectionIncomplete")
|
||||
}
|
||||
aria-current="step"
|
||||
data-show=""
|
||||
id="check-youre-allowed-to-drive"
|
||||
>
|
||||
<div
|
||||
className="app-step-nav__header js-toggle-panel "
|
||||
data-position="1"
|
||||
>
|
||||
<h3 className="app-step-nav__title ">
|
||||
<span className="app-step-nav__circle app-step-nav__circle--number">
|
||||
<span className="app-step-nav__circle-inner">
|
||||
<span className="app-step-nav__circle-background">
|
||||
<span className="app-step-nav__circle-step-label govuk-visually-hidden">
|
||||
Step
|
||||
</span>{" "}
|
||||
5
|
||||
<span
|
||||
className="app-step-nav__circle-step-colon govuk-visually-hidden"
|
||||
aria-hidden="true"
|
||||
>
|
||||
:
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<span className="js-step-title">
|
||||
<a
|
||||
href="#"
|
||||
onClick={() => {
|
||||
setShowQuestionnaireSection(5);
|
||||
}}
|
||||
className="app-step-nav__button app-step-nav__button--title js-step-title-button"
|
||||
aria-expanded="false"
|
||||
aria-controls="step-panel-check-youre-allowed-to-drive-1"
|
||||
>
|
||||
<span className="js-step-title-text govuk-!-font-size-16">
|
||||
{t(
|
||||
"myrepresentations:s78-section-heading-five"
|
||||
)}
|
||||
</span>
|
||||
</a>
|
||||
</span>
|
||||
</h3>
|
||||
</div>
|
||||
</li>{" "}
|
||||
<li
|
||||
className={
|
||||
"app-step-nav__step js-step app-step-nav__step--active" +
|
||||
(showQuestionnaireSection >= 6
|
||||
? " sectionComplete"
|
||||
: " sectionIncomplete")
|
||||
}
|
||||
aria-current="step"
|
||||
data-show=""
|
||||
id="check-youre-allowed-to-drive"
|
||||
>
|
||||
<div
|
||||
className="app-step-nav__header js-toggle-panel "
|
||||
data-position="1"
|
||||
>
|
||||
<h3 className="app-step-nav__title ">
|
||||
<span className="app-step-nav__circle app-step-nav__circle--number">
|
||||
<span className="app-step-nav__circle-inner">
|
||||
<span className="app-step-nav__circle-background">
|
||||
<span className="app-step-nav__circle-step-label govuk-visually-hidden">
|
||||
Step
|
||||
</span>{" "}
|
||||
6
|
||||
<span
|
||||
className="app-step-nav__circle-step-colon govuk-visually-hidden"
|
||||
aria-hidden="true"
|
||||
>
|
||||
:
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<span className="js-step-title">
|
||||
<a
|
||||
href="#"
|
||||
onClick={() => {
|
||||
setShowQuestionnaireSection(6);
|
||||
}}
|
||||
className="app-step-nav__button app-step-nav__button--title js-step-title-button"
|
||||
aria-expanded="false"
|
||||
aria-controls="step-panel-check-youre-allowed-to-drive-1"
|
||||
>
|
||||
<span className="js-step-title-text govuk-!-font-size-16">
|
||||
{t(
|
||||
"myrepresentations:add-files-label"
|
||||
)}
|
||||
</span>
|
||||
</a>
|
||||
</span>
|
||||
</h3>
|
||||
</div>
|
||||
</li>
|
||||
<li
|
||||
className={
|
||||
"app-step-nav__step js-step app-step-nav__step--active" +
|
||||
(showQuestionnaireSection >= 7
|
||||
? " sectionComplete"
|
||||
: " sectionIncomplete")
|
||||
}
|
||||
aria-current="step"
|
||||
data-show=""
|
||||
id="check-youre-allowed-to-drive"
|
||||
>
|
||||
<div
|
||||
className="app-step-nav__header js-toggle-panel "
|
||||
data-position="1"
|
||||
>
|
||||
<h3 className="app-step-nav__title ">
|
||||
<span className="app-step-nav__circle app-step-nav__circle--number">
|
||||
<span className="app-step-nav__circle-inner">
|
||||
<span className="app-step-nav__circle-background">
|
||||
<span className="app-step-nav__circle-step-label govuk-visually-hidden">
|
||||
Step
|
||||
</span>{" "}
|
||||
7
|
||||
<span
|
||||
className="app-step-nav__circle-step-colon govuk-visually-hidden"
|
||||
aria-hidden="true"
|
||||
>
|
||||
:
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<span className="js-step-title">
|
||||
<a
|
||||
href="#"
|
||||
onClick={() => {
|
||||
setShowQuestionnaireSection(7);
|
||||
}}
|
||||
className="app-step-nav__button app-step-nav__button--title js-step-title-button"
|
||||
aria-expanded="false"
|
||||
aria-controls="step-panel-check-youre-allowed-to-drive-1"
|
||||
>
|
||||
<span className="js-step-title-text govuk-!-font-size-16">
|
||||
{t(
|
||||
"myrepresentations:s78-section-heading-seven"
|
||||
)}
|
||||
</span>
|
||||
</a>
|
||||
</span>
|
||||
</h3>
|
||||
</div>
|
||||
</li>
|
||||
</ol>
|
||||
</div>
|
||||
</nav>
|
||||
);
|
||||
};
|
||||
|
||||
export default RepresentationProgress_s78;
|
||||
+1051
-780
File diff suppressed because it is too large
Load Diff
+376
-188
@@ -97,32 +97,23 @@ let S78_Questionnaire = (props) => {
|
||||
aria-describedby="commentBox-hint"
|
||||
>
|
||||
<h3 className="govuk-heading-s ">
|
||||
Appeal procedure and site visit{" "}
|
||||
{t("myrepresentations:s78-section-heading-one")}{" "}
|
||||
</h3>
|
||||
<div className="govuk-form-group">
|
||||
<div className="govuk-label">
|
||||
1. PEDW Reference:{" "}
|
||||
1. {t("myrepresentations:s78-section-question-1")}{" "}
|
||||
{currentView.caseReference.currentReference}
|
||||
</div>
|
||||
</div>
|
||||
<div className="govuk-form-group">
|
||||
<div className="govuk-label">
|
||||
2. LPA reference: {resultsObj.pinswg_lpareference}
|
||||
2. {t("myrepresentations:s78-section-question-2")}{" "}
|
||||
{resultsObj.pinswg_lpareference}
|
||||
</div>
|
||||
</div>
|
||||
<div className="govuk-form-group">
|
||||
<div className="govuk-label">
|
||||
4. Appeal type:{" "}
|
||||
{
|
||||
getFormCollectionByID(
|
||||
currentView.caseReference.appealType
|
||||
).value
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
<div className="govuk-form-group">
|
||||
<div className="govuk-label">
|
||||
3. Site Address:{" "}
|
||||
3. {t("myrepresentations:s78-section-question-3")}{" "}
|
||||
{detailsObj.pinswg_siteaddressline1 +
|
||||
" " +
|
||||
detailsObj.pinswg_siteaddressline2 +
|
||||
@@ -132,9 +123,23 @@ let S78_Questionnaire = (props) => {
|
||||
detailsObj.pinswg_siteaddresspostcode}
|
||||
</div>
|
||||
</div>
|
||||
<div className="govuk-form-group">
|
||||
<div className="govuk-label">
|
||||
4. {t("myrepresentations:s78-section-question-4")}{" "}
|
||||
{
|
||||
getFormCollectionByID(
|
||||
currentView.caseReference.appealType
|
||||
).value
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="govuk-form-group">
|
||||
<Field
|
||||
label="5. Which procedure do you consider the appeal should follow?"
|
||||
label={
|
||||
"5. " +
|
||||
t("myrepresentations:s78-section-question-5")
|
||||
}
|
||||
name="procedureType"
|
||||
optionsArr={[
|
||||
"Written representations",
|
||||
@@ -164,11 +169,17 @@ let S78_Questionnaire = (props) => {
|
||||
)}
|
||||
|
||||
<Field
|
||||
label="6. Will the Inspector need to enter the appeal site/property?"
|
||||
label={
|
||||
"6. " +
|
||||
t("myrepresentations:s78-section-question-6")
|
||||
}
|
||||
name="enterToView"
|
||||
id="enterToView"
|
||||
component={RenderRadioList}
|
||||
options={["Yes", "No"]}
|
||||
options={[
|
||||
t("myrepresentations:questionnaire-yes"),
|
||||
t("myrepresentations:questionnaire-no"),
|
||||
]}
|
||||
type="text"
|
||||
rows="5"
|
||||
className="govuk-textarea govuk-input--width-30"
|
||||
@@ -179,57 +190,81 @@ let S78_Questionnaire = (props) => {
|
||||
<Field
|
||||
name="enterNeighbouringLandToViewSite"
|
||||
datafieldname="enterNeighbouringLandToViewSite"
|
||||
options={["Yes", "No"]}
|
||||
options={[
|
||||
t("myrepresentations:questionnaire-yes"),
|
||||
t("myrepresentations:questionnaire-no"),
|
||||
]}
|
||||
id="enterNeighbouringLandToViewSite"
|
||||
className="govuk-radios__input"
|
||||
errorMsg={t("newappeal:select-an-option-label")}
|
||||
component={RenderLPACondtionalRadioList}
|
||||
validate={[required]}
|
||||
legend={
|
||||
"7. Do you consider that the Inspector needs to enter neighbouring private land/property to view the site?"
|
||||
"7. " +
|
||||
t(
|
||||
"myrepresentations:s78-section-question-7"
|
||||
)
|
||||
}
|
||||
conditionalLabel={
|
||||
"If Yes, give reasons and provide the neighbouring site address. If you have them, provide the contact details of the landowner in an attachment."
|
||||
}
|
||||
optionSelect={"Yes"}
|
||||
conditionalLabel={t(
|
||||
"myrepresentations:s78-section-question-7-hint"
|
||||
)}
|
||||
optionSelect={t(
|
||||
"myrepresentations:questionnaire-yes"
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
<div className="govuk-form-group">
|
||||
<Field
|
||||
name="enterNeighbouringLandAccessRequired"
|
||||
datafieldname="enterNeighbouringLandAccessRequired"
|
||||
options={["Yes", "No"]}
|
||||
options={[
|
||||
t("myrepresentations:questionnaire-yes"),
|
||||
t("myrepresentations:questionnaire-no"),
|
||||
]}
|
||||
id="enterNeighbouringLandAccessRequired"
|
||||
className="govuk-radios__input"
|
||||
errorMsg={t("newappeal:select-an-option-label")}
|
||||
component={RenderLPACondtionalRadioList}
|
||||
validate={[required]}
|
||||
legend={
|
||||
"8. If access to private land/buildings is required, are you content for the Inspector to visit the site on an ‘access required’ basis, with only the landowner or their representative present?"
|
||||
"8. " +
|
||||
t(
|
||||
"myrepresentations:s78-section-question-8"
|
||||
)
|
||||
}
|
||||
conditionalLabel={
|
||||
"If No, give reasons for why you consider an Accompanied Site Visit to be necessary"
|
||||
}
|
||||
optionSelect={"No"}
|
||||
conditionalLabel={t(
|
||||
"myrepresentations:s78-section-question-8-hint"
|
||||
)}
|
||||
optionSelect={t(
|
||||
"myrepresentations:questionnaire-no"
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
<div className="govuk-form-group">
|
||||
<Field
|
||||
name="healthAndSafetyIssues"
|
||||
datafieldname="healthAndSafetyIssues"
|
||||
options={["Yes", "No"]}
|
||||
options={[
|
||||
t("myrepresentations:questionnaire-yes"),
|
||||
t("myrepresentations:questionnaire-no"),
|
||||
]}
|
||||
id="healthAndSafetyIssues"
|
||||
className="govuk-radios__input"
|
||||
errorMsg={t("newappeal:select-an-option-label")}
|
||||
component={RenderLPACondtionalRadioList}
|
||||
validate={[required]}
|
||||
legend={
|
||||
"9. Are you aware of any health and safety issues which would need to be considered when the Inspector visits the site?"
|
||||
"9. " +
|
||||
t(
|
||||
"myrepresentations:s78-section-question-9"
|
||||
)
|
||||
}
|
||||
conditionalLabel={
|
||||
"If Yes, describe the health and safety issues to be considered"
|
||||
}
|
||||
optionSelect={"Yes"}
|
||||
conditionalLabel={t(
|
||||
"myrepresentations:s78-section-question-9-hint"
|
||||
)}
|
||||
optionSelect={t(
|
||||
"myrepresentations:questionnaire-yes"
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -242,7 +277,12 @@ let S78_Questionnaire = (props) => {
|
||||
data-aria-controls="LPAcontactDetails"
|
||||
type="text"
|
||||
component={RenderRichMultiline}
|
||||
label="10. LPA contact for site visit, hearing or inquiry arrangements:"
|
||||
label={
|
||||
"10. " +
|
||||
t(
|
||||
"myrepresentations:s78-section-question-10"
|
||||
)
|
||||
}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@@ -253,10 +293,16 @@ let S78_Questionnaire = (props) => {
|
||||
className="govuk-fieldset govuk-!-margin-top-9"
|
||||
aria-describedby="commentBox-hint"
|
||||
>
|
||||
<h3 className="govuk-heading-s ">Supporting documents </h3>
|
||||
<h3 className="govuk-heading-s ">
|
||||
{" "}
|
||||
{t("myrepresentations:s78-section-heading-two")}{" "}
|
||||
</h3>
|
||||
<div className="govuk-form-group">
|
||||
<Field
|
||||
label="11. LPA case file and representations"
|
||||
label={
|
||||
"11. " +
|
||||
t("myrepresentations:s78-section-question-11")
|
||||
}
|
||||
name="LPAcaseFileAndReps"
|
||||
id="LPAcaseFileAndReps"
|
||||
component={RenderMultiline}
|
||||
@@ -265,12 +311,17 @@ let S78_Questionnaire = (props) => {
|
||||
className="govuk-textarea govuk-input--width-30"
|
||||
aria-describedby={props.name + "-hint"}
|
||||
richText="false"
|
||||
hint="Insert weblink(s) to case file and representations on the LPA’s 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 LPA’s 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."
|
||||
hint={t(
|
||||
"myrepresentations:s78-section-question-11-hint"
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
<div className="govuk-form-group">
|
||||
<Field
|
||||
label="12. LPA’s adopted local development plan and Proposals Map:"
|
||||
label={
|
||||
"12. " +
|
||||
t("myrepresentations:s78-section-question-12")
|
||||
}
|
||||
name="LPAldpAndMap"
|
||||
id="LPAldpAndMap"
|
||||
component={RenderMultiline}
|
||||
@@ -279,12 +330,17 @@ let S78_Questionnaire = (props) => {
|
||||
className="govuk-textarea govuk-input--width-30"
|
||||
aria-describedby={props.name + "-hint"}
|
||||
richText="false"
|
||||
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."
|
||||
hint={t(
|
||||
"myrepresentations:s78-section-question-12-hint"
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
<div className="govuk-form-group">
|
||||
<Field
|
||||
label="13. Adopted local guidance relevant to the proposal"
|
||||
label={
|
||||
"13. " +
|
||||
t("myrepresentations:s78-section-question-13")
|
||||
}
|
||||
name="LPAlocalGuidance"
|
||||
id="LPAlocalGuidance"
|
||||
component={RenderMultiline}
|
||||
@@ -293,15 +349,23 @@ let S78_Questionnaire = (props) => {
|
||||
className="govuk-textarea govuk-input--width-30"
|
||||
aria-describedby={props.name + "-hint"}
|
||||
richText="false"
|
||||
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."
|
||||
hint={t(
|
||||
"myrepresentations:s78-section-question-13-hint"
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
<Field
|
||||
label="14. If applicable, do you intend to submit a full statement at the 4- week stage?"
|
||||
label={
|
||||
"14. " +
|
||||
t("myrepresentations:s78-section-question-13")
|
||||
}
|
||||
name="LPAintentionToSubmitFullStatement"
|
||||
id="LPAintentionToSubmitFullStatement"
|
||||
component={RenderRadioList}
|
||||
options={["Yes", "No"]}
|
||||
options={[
|
||||
t("myrepresentations:questionnaire-yes"),
|
||||
t("myrepresentations:questionnaire-no"),
|
||||
]}
|
||||
type="text"
|
||||
rows="5"
|
||||
className="govuk-textarea govuk-input--width-30"
|
||||
@@ -315,14 +379,20 @@ let S78_Questionnaire = (props) => {
|
||||
aria-describedby="commentBox-hint"
|
||||
>
|
||||
<h3 className="govuk-heading-s ">
|
||||
Statutory considerations
|
||||
{t("myrepresentations:s78-section-heading-three")}
|
||||
</h3>
|
||||
<Field
|
||||
label="15. Is all or part of the site within an Area of Outstanding Natural Beauty?"
|
||||
label={
|
||||
"15. " +
|
||||
t("myrepresentations:s78-section-question-15")
|
||||
}
|
||||
name="AONB"
|
||||
id="AONB"
|
||||
component={RenderRadioList}
|
||||
options={["Yes", "No"]}
|
||||
options={[
|
||||
t("myrepresentations:questionnaire-yes"),
|
||||
t("myrepresentations:questionnaire-no"),
|
||||
]}
|
||||
type="text"
|
||||
rows="5"
|
||||
className="govuk-textarea govuk-input--width-30"
|
||||
@@ -333,122 +403,164 @@ let S78_Questionnaire = (props) => {
|
||||
<Field
|
||||
name="ROW"
|
||||
datafieldname="ROW"
|
||||
options={["Yes", "No"]}
|
||||
options={[
|
||||
t("myrepresentations:questionnaire-yes"),
|
||||
t("myrepresentations:questionnaire-no"),
|
||||
]}
|
||||
id="ROW"
|
||||
className="govuk-radios__input"
|
||||
errorMsg={t("newappeal:select-an-option-label")}
|
||||
component={RenderLPACondtionalRadioList}
|
||||
validate={[required]}
|
||||
legend={
|
||||
"16. Does the site include any public rights of way?"
|
||||
"16. " +
|
||||
t("myrepresentations:s78-section-question-16")
|
||||
}
|
||||
conditionalLabel={
|
||||
"If Yes, attach or insert a link to the definitive map and statement for the local area"
|
||||
}
|
||||
optionSelect={"Yes"}
|
||||
conditionalLabel={t(
|
||||
"myrepresentations:s78-section-question-16-hint"
|
||||
)}
|
||||
optionSelect={t(
|
||||
"myrepresentations:questionnaire-yes"
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
<div className="govuk-form-group">
|
||||
<Field
|
||||
name="conservationArea"
|
||||
datafieldname="conservationArea"
|
||||
options={["Yes", "No"]}
|
||||
options={[
|
||||
t("myrepresentations:questionnaire-yes"),
|
||||
t("myrepresentations:questionnaire-no"),
|
||||
]}
|
||||
id="conservationArea"
|
||||
className="govuk-radios__input"
|
||||
errorMsg={t("newappeal:select-an-option-label")}
|
||||
component={RenderLPACondtionalRadioList}
|
||||
validate={[required]}
|
||||
legend={
|
||||
"17. Is all or part of the site within a Conservation Area?"
|
||||
"17. " +
|
||||
t("myrepresentations:s78-section-question-17")
|
||||
}
|
||||
conditionalLabel={
|
||||
"If Yes, attach or insert links to a plan showing the Conservation Area boundary"
|
||||
}
|
||||
optionSelect={"Yes"}
|
||||
conditionalLabel={t(
|
||||
"myrepresentations:s78-section-question-17-hint"
|
||||
)}
|
||||
optionSelect={t(
|
||||
"myrepresentations:questionnaire-yes"
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
<div className="govuk-form-group">
|
||||
<Field
|
||||
name="affectListedBuilding"
|
||||
datafieldname="affectListedBuilding"
|
||||
options={["Yes", "No"]}
|
||||
options={[
|
||||
t("myrepresentations:questionnaire-yes"),
|
||||
t("myrepresentations:questionnaire-no"),
|
||||
]}
|
||||
id="affectListedBuilding"
|
||||
className="govuk-radios__input"
|
||||
errorMsg={t("newappeal:select-an-option-label")}
|
||||
component={RenderLPACondtionalRadioList}
|
||||
validate={[required]}
|
||||
legend={
|
||||
"18. Would the proposal involve works to, or affect the setting of, a listed building, Scheduled Monument or other designated historic asset?"
|
||||
"18. " +
|
||||
t("myrepresentations:s78-section-question-18")
|
||||
}
|
||||
conditionalLabel={
|
||||
"If Yes, attach or insert links to the listing description(s) and location plan"
|
||||
}
|
||||
optionSelect={"Yes"}
|
||||
conditionalLabel={t(
|
||||
"myrepresentations:s78-section-question-18-hint"
|
||||
)}
|
||||
optionSelect={t(
|
||||
"myrepresentations:questionnaire-yes"
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
<div className="govuk-form-group">
|
||||
<Field
|
||||
name="TPO"
|
||||
datafieldname="TPO"
|
||||
options={["Yes", "No"]}
|
||||
options={[
|
||||
t("myrepresentations:questionnaire-yes"),
|
||||
t("myrepresentations:questionnaire-no"),
|
||||
]}
|
||||
id="TPO"
|
||||
className="govuk-radios__input"
|
||||
errorMsg={t("newappeal:select-an-option-label")}
|
||||
component={RenderLPACondtionalRadioList}
|
||||
validate={[required]}
|
||||
legend={
|
||||
"19. Is any part of the site subject to a Tree Preservation Order?"
|
||||
"19. " +
|
||||
t("myrepresentations:s78-section-question-19")
|
||||
}
|
||||
conditionalLabel={
|
||||
"If Yes, attach or insert links to the relevant plan and details"
|
||||
}
|
||||
optionSelect={"Yes"}
|
||||
conditionalLabel={t(
|
||||
"myrepresentations:s78-section-question-19-hint"
|
||||
)}
|
||||
optionSelect={t(
|
||||
"myrepresentations:questionnaire-yes"
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
<div className="govuk-form-group">
|
||||
<Field
|
||||
name="natureConservationSite"
|
||||
datafieldname="natureConservationSite"
|
||||
options={["Yes", "No"]}
|
||||
options={[
|
||||
t("myrepresentations:questionnaire-yes"),
|
||||
t("myrepresentations:questionnaire-no"),
|
||||
]}
|
||||
id="natureConservationSite"
|
||||
className="govuk-radios__input"
|
||||
errorMsg={t("newappeal:select-an-option-label")}
|
||||
component={RenderLPACondtionalRadioList}
|
||||
validate={[required]}
|
||||
legend={
|
||||
"20. Is the site within or likely to affect an International or National Designated Site for nature conservation (as defined in Planning Policy Wales)?"
|
||||
"20. " +
|
||||
t("myrepresentations:s78-section-question-20")
|
||||
}
|
||||
conditionalLabel={
|
||||
"If Yes, specify the name and attach any relevant details"
|
||||
}
|
||||
optionSelect={"Yes"}
|
||||
conditionalLabel={t(
|
||||
"myrepresentations:s78-section-question-20-hint"
|
||||
)}
|
||||
optionSelect={t(
|
||||
"myrepresentations:questionnaire-yes"
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
<div className="govuk-form-group">
|
||||
<Field
|
||||
name="protectedSpecies"
|
||||
datafieldname="protectedSpecies"
|
||||
options={["Yes", "No"]}
|
||||
options={[
|
||||
t("myrepresentations:questionnaire-yes"),
|
||||
t("myrepresentations:questionnaire-no"),
|
||||
]}
|
||||
id="protectedSpecies"
|
||||
className="govuk-radios__input"
|
||||
errorMsg={t("newappeal:select-an-option-label")}
|
||||
component={RenderLPACondtionalRadioList}
|
||||
validate={[required]}
|
||||
legend={
|
||||
"21. Are any protected species likely to be affected by the proposal?"
|
||||
"21. " +
|
||||
t("myrepresentations:s78-section-question-21")
|
||||
}
|
||||
conditionalLabel={
|
||||
"If Yes, specify which and attach any relevant details"
|
||||
}
|
||||
optionSelect={"Yes"}
|
||||
conditionalLabel={t(
|
||||
"myrepresentations:s78-section-question-21-hint"
|
||||
)}
|
||||
optionSelect={t(
|
||||
"myrepresentations:questionnaire-yes"
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
<Field
|
||||
label="22. Does the case involve persons claiming Gypsy/Traveller status, whether or not this is accepted by the LPA?"
|
||||
label={
|
||||
"22. " +
|
||||
t("myrepresentations:s78-section-question-22")
|
||||
}
|
||||
name="gypsyTravellerInvolvment"
|
||||
id="gypsyTravellerInvolvment"
|
||||
component={RenderRadioList}
|
||||
options={["Yes", "No"]}
|
||||
options={[
|
||||
t("myrepresentations:questionnaire-yes"),
|
||||
t("myrepresentations:questionnaire-no"),
|
||||
]}
|
||||
type="text"
|
||||
rows="5"
|
||||
className="govuk-textarea govuk-input--width-30"
|
||||
@@ -458,19 +570,25 @@ let S78_Questionnaire = (props) => {
|
||||
<Field
|
||||
name="governmentDepartmentComments"
|
||||
datafieldname="governmentDepartmentComments"
|
||||
options={["Yes", "No"]}
|
||||
options={[
|
||||
t("myrepresentations:questionnaire-yes"),
|
||||
t("myrepresentations:questionnaire-no"),
|
||||
]}
|
||||
id="governmentDepartmentComments"
|
||||
className="govuk-radios__input"
|
||||
errorMsg={t("newappeal:select-an-option-label")}
|
||||
component={RenderLPACondtionalRadioList}
|
||||
validate={[required]}
|
||||
legend={
|
||||
"23. Have you received comments or directions from any government department/agency or statutory undertaker, including in response to a statutory notification or consultation?"
|
||||
"23. " +
|
||||
t("myrepresentations:s78-section-question-23")
|
||||
}
|
||||
conditionalLabel={
|
||||
"If Yes, specify which and attach any relevant details"
|
||||
}
|
||||
optionSelect={"Yes"}
|
||||
conditionalLabel={t(
|
||||
"myrepresentations:s78-section-question-23-hint"
|
||||
)}
|
||||
optionSelect={t(
|
||||
"myrepresentations:questionnaire-yes"
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
</fieldset>
|
||||
@@ -480,21 +598,26 @@ let S78_Questionnaire = (props) => {
|
||||
className="govuk-fieldset govuk-!-margin-top-9"
|
||||
aria-describedby="commentBox-hint"
|
||||
>
|
||||
<h3 className="govuk-heading-s ">Suggested conditions</h3>
|
||||
<h3 className="govuk-heading-s ">
|
||||
{t("myrepresentations:s78-section-heading-four")}
|
||||
</h3>
|
||||
<div className="govuk-form-group govuk-body-m">
|
||||
24. Review the following standard conditions and advise
|
||||
whether they would be necessary if permission/consent is
|
||||
granted (not applicable to Advertisement consent
|
||||
proposals):
|
||||
{"24. " +
|
||||
t("myrepresentations:s78-section-question-24")}
|
||||
</div>
|
||||
|
||||
<Field
|
||||
label="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."
|
||||
label={
|
||||
"a) " +
|
||||
t("myrepresentations:s78-section-question-24a")
|
||||
}
|
||||
name="developmentNotBeginLaterThanFiveYears"
|
||||
id="developmentNotBeginLaterThanFiveYears"
|
||||
component={RenderRadioList}
|
||||
options={["Yes", "No"]}
|
||||
options={[
|
||||
t("myrepresentations:questionnaire-yes"),
|
||||
t("myrepresentations:questionnaire-no"),
|
||||
]}
|
||||
type="text"
|
||||
rows="5"
|
||||
className="govuk-textarea govuk-input--width-30"
|
||||
@@ -505,40 +628,56 @@ Reason: To comply with Section 91 of the Town and Country Planning Act 1990 / Se
|
||||
<Field
|
||||
name="developmentCarriedOutInAccordance"
|
||||
datafieldname="developmentCarriedOutInAccordance"
|
||||
options={["Yes", "No"]}
|
||||
options={[
|
||||
t("myrepresentations:questionnaire-yes"),
|
||||
t("myrepresentations:questionnaire-no"),
|
||||
]}
|
||||
id="developmentCarriedOutInAccordance"
|
||||
className="govuk-radios__input"
|
||||
errorMsg={t("newappeal:select-an-option-label")}
|
||||
component={RenderLPACondtionalRadioList}
|
||||
validate={[required]}
|
||||
legend={
|
||||
"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."
|
||||
"b) " +
|
||||
t("myrepresentations:s78-section-question-24b")
|
||||
}
|
||||
conditionalLabel={
|
||||
"If Yes, list the approved plans, documents and drawings here or list them in an attached document"
|
||||
}
|
||||
optionSelect={"Yes"}
|
||||
conditionalLabel={t(
|
||||
"myrepresentations:s78-section-question-24b-hint"
|
||||
)}
|
||||
optionSelect={t(
|
||||
"myrepresentations:questionnaire-yes"
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
<Field
|
||||
label="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."
|
||||
label={
|
||||
"c) " +
|
||||
t("myrepresentations:s78-section-question-24c")
|
||||
}
|
||||
name="developmentNotTakePlaceBiodiversity"
|
||||
id="developmentNotTakePlaceBiodiversity"
|
||||
component={RenderRadioList}
|
||||
options={["Yes", "No"]}
|
||||
options={[
|
||||
t("myrepresentations:questionnaire-yes"),
|
||||
t("myrepresentations:questionnaire-no"),
|
||||
]}
|
||||
type="text"
|
||||
rows="5"
|
||||
className="govuk-textarea govuk-input--width-30"
|
||||
aria-describedby={props.name + "-hint"}
|
||||
/>
|
||||
<Field
|
||||
label="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."
|
||||
label={
|
||||
"d) " +
|
||||
t("myrepresentations:s78-section-question-24d")
|
||||
}
|
||||
name="developmentNotTakePlaceBroadband"
|
||||
id="developmentNotTakePlaceBroadband"
|
||||
component={RenderRadioList}
|
||||
options={["Yes", "No"]}
|
||||
options={[
|
||||
t("myrepresentations:questionnaire-yes"),
|
||||
t("myrepresentations:questionnaire-no"),
|
||||
]}
|
||||
type="text"
|
||||
rows="5"
|
||||
className="govuk-textarea govuk-input--width-30"
|
||||
@@ -549,19 +688,25 @@ Reason: To support the roll-out of digital communications infrastructure across
|
||||
<Field
|
||||
name="developmentAnyOtherConditions"
|
||||
datafieldname="developmentAnyOtherConditions"
|
||||
options={["Yes", "No"]}
|
||||
options={[
|
||||
t("myrepresentations:questionnaire-yes"),
|
||||
t("myrepresentations:questionnaire-no"),
|
||||
]}
|
||||
id="developmentAnyOtherConditions"
|
||||
className="govuk-radios__input"
|
||||
errorMsg={t("newappeal:select-an-option-label")}
|
||||
component={RenderLPACondtionalRadioList}
|
||||
validate={[required]}
|
||||
legend={
|
||||
"25. Do you consider other conditions, or amended versions of the above standard conditions, to be necessary?"
|
||||
"25. " +
|
||||
t("myrepresentations:s78-section-question-25")
|
||||
}
|
||||
conditionalLabel={
|
||||
"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."
|
||||
}
|
||||
optionSelect={"Yes"}
|
||||
conditionalLabel={t(
|
||||
"myrepresentations:s78-section-question-25-hint"
|
||||
)}
|
||||
optionSelect={t(
|
||||
"myrepresentations:questionnaire-yes"
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
</fieldset>
|
||||
@@ -572,160 +717,199 @@ Reason: To support the roll-out of digital communications infrastructure across
|
||||
aria-describedby="commentBox-hint"
|
||||
>
|
||||
<h3 className="govuk-heading-s ">
|
||||
Before sending, have you attached or provided a web link
|
||||
to:
|
||||
{t("myrepresentations:s78-section-heading-five")}
|
||||
</h3>
|
||||
|
||||
<div className="govuk-form-group">
|
||||
<Field
|
||||
name="copyOfApplicantsCertificate"
|
||||
datafieldname="copyOfApplicantsCertificate"
|
||||
options={["Yes", "No"]}
|
||||
options={[
|
||||
t("myrepresentations:questionnaire-yes"),
|
||||
t("myrepresentations:questionnaire-no"),
|
||||
]}
|
||||
id="copyOfApplicantsCertificate"
|
||||
className="govuk-radios__input"
|
||||
errorMsg={t("newappeal:select-an-option-label")}
|
||||
component={RenderLPACondtionalRadioList}
|
||||
validate={[required]}
|
||||
legend={
|
||||
"26. A copy of the applicant’s certificate confirming that they notified persons with an interest in the land?"
|
||||
}
|
||||
conditionalLabel={
|
||||
"Insert weblink here if available online. If No, give reasons"
|
||||
}
|
||||
optionSelect={"No"}
|
||||
legend={t(
|
||||
"myrepresentations:s78-section-question-26"
|
||||
)}
|
||||
conditionalLabel={t(
|
||||
"myrepresentations:s78-section-question-26-hint"
|
||||
)}
|
||||
optionSelect={t(
|
||||
"myrepresentations:questionnaire-no"
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
<div className="govuk-form-group">
|
||||
<Field
|
||||
name="advertismentGiven"
|
||||
datafieldname="advertismentGiven"
|
||||
options={["Yes", "No"]}
|
||||
options={[
|
||||
t("myrepresentations:questionnaire-yes"),
|
||||
t("myrepresentations:questionnaire-no"),
|
||||
]}
|
||||
id="advertismentGiven"
|
||||
className="govuk-radios__input"
|
||||
errorMsg={t("newappeal:select-an-option-label")}
|
||||
component={RenderLPACondtionalRadioList}
|
||||
validate={[required]}
|
||||
legend={
|
||||
"27. Evidence of any publicity given to the application, including site notices and local advertisement?**"
|
||||
}
|
||||
conditionalLabel={
|
||||
"Insert weblink here if available online. If No, give reasons"
|
||||
}
|
||||
optionSelect={"No"}
|
||||
legend={t(
|
||||
"myrepresentations:s78-section-question-27"
|
||||
)}
|
||||
conditionalLabel={t(
|
||||
"myrepresentations:s78-section-question-27-hint"
|
||||
)}
|
||||
optionSelect={t(
|
||||
"myrepresentations:questionnaire-no"
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
<div className="govuk-form-group">
|
||||
<Field
|
||||
name="copyOfLetterOfAppealNotification"
|
||||
datafieldname="copyOfLetterOfAppealNotification"
|
||||
options={["Yes", "No"]}
|
||||
options={[
|
||||
t("myrepresentations:questionnaire-yes"),
|
||||
t("myrepresentations:questionnaire-no"),
|
||||
]}
|
||||
id="copyOfLetterOfAppealNotification"
|
||||
className="govuk-radios__input"
|
||||
errorMsg={t("newappeal:select-an-option-label")}
|
||||
component={RenderLPACondtionalRadioList}
|
||||
validate={[required]}
|
||||
legend={
|
||||
"28. A copy of the letter with which you notified people of the appeal AND a list of the people you notified?"
|
||||
}
|
||||
conditionalLabel={
|
||||
"Insert weblink here if available online. If No, give reasons"
|
||||
}
|
||||
optionSelect={"No"}
|
||||
legend={t(
|
||||
"myrepresentations:s78-section-question-28"
|
||||
)}
|
||||
conditionalLabel={t(
|
||||
"myrepresentations:s78-section-question-28-hint"
|
||||
)}
|
||||
optionSelect={t(
|
||||
"myrepresentations:questionnaire-no"
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
<div className="govuk-form-group">
|
||||
<Field
|
||||
name="lpaEIAOS"
|
||||
datafieldname="lpaEIAOS"
|
||||
options={["Yes", "No"]}
|
||||
options={[
|
||||
t("myrepresentations:questionnaire-yes"),
|
||||
t("myrepresentations:questionnaire-no"),
|
||||
]}
|
||||
id="lpaEIAOS"
|
||||
className="govuk-radios__input"
|
||||
errorMsg={t("newappeal:select-an-option-label")}
|
||||
component={RenderLPACondtionalRadioList}
|
||||
validate={[required]}
|
||||
legend={
|
||||
"29. he LPA’s Environmental Impact Assessment Screening Opinion, if applicable?"
|
||||
}
|
||||
conditionalLabel={
|
||||
"Insert weblink here if available online. If No, give reasons"
|
||||
}
|
||||
optionSelect={"Yes"}
|
||||
legend={t(
|
||||
"myrepresentations:s78-section-question-29"
|
||||
)}
|
||||
conditionalLabel={t(
|
||||
"myrepresentations:s78-section-question-29-hint"
|
||||
)}
|
||||
optionSelect={t(
|
||||
"myrepresentations:questionnaire-yes"
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
<div className="govuk-form-group">
|
||||
<Field
|
||||
name="advertismentConsentDiscontinuanceNotice"
|
||||
datafieldname="advertismentConsentDiscontinuanceNotice"
|
||||
options={["Yes", "No"]}
|
||||
options={[
|
||||
t("myrepresentations:questionnaire-yes"),
|
||||
t("myrepresentations:questionnaire-no"),
|
||||
]}
|
||||
id="advertismentConsentDiscontinuanceNotice"
|
||||
className="govuk-radios__input"
|
||||
errorMsg={t("newappeal:select-an-option-label")}
|
||||
component={RenderLPACondtionalRadioList}
|
||||
validate={[required]}
|
||||
legend={
|
||||
"30. Advertisement consent proposals only: A true copy of the Discontinuance Notice (if one has been issued)?"
|
||||
}
|
||||
conditionalLabel={
|
||||
"If Yes, state how the use of the site or the display of the advertisement(s) enjoys the benefit of deemed consent"
|
||||
}
|
||||
optionSelect={"Yes"}
|
||||
legend={t(
|
||||
"myrepresentations:s78-section-question-30"
|
||||
)}
|
||||
conditionalLabel={t(
|
||||
"myrepresentations:s78-section-question-30-hint"
|
||||
)}
|
||||
optionSelect={t(
|
||||
"myrepresentations:questionnaire-yes"
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
<div className="govuk-form-group">
|
||||
<Field
|
||||
name="detailsOfOtherAppeals"
|
||||
datafieldname="detailsOfOtherAppeals"
|
||||
options={["Yes", "No"]}
|
||||
options={[
|
||||
t("myrepresentations:questionnaire-yes"),
|
||||
t("myrepresentations:questionnaire-no"),
|
||||
]}
|
||||
id="detailsOfOtherAppeals"
|
||||
className="govuk-radios__input"
|
||||
errorMsg={t("newappeal:select-an-option-label")}
|
||||
component={RenderLPACondtionalRadioList}
|
||||
validate={[required]}
|
||||
legend={
|
||||
"31. Details of other appeals or applications relating to the site, or a nearby site, which are still being considered by PEDW or the Welsh Ministers?"
|
||||
}
|
||||
conditionalLabel={
|
||||
"If Yes, provide reference numbers and, if applicable, attach or insert links to relevant documents"
|
||||
}
|
||||
optionSelect={"Yes"}
|
||||
legend={t(
|
||||
"myrepresentations:s78-section-question-31"
|
||||
)}
|
||||
conditionalLabel={t(
|
||||
"myrepresentations:s78-section-question-31-hint"
|
||||
)}
|
||||
optionSelect={t(
|
||||
"myrepresentations:questionnaire-yes"
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
<div className="govuk-form-group">
|
||||
<Field
|
||||
name="detailsOfPreviousAppeals"
|
||||
datafieldname="detailsOfPreviousAppeals"
|
||||
options={["Yes", "No"]}
|
||||
options={[
|
||||
t("myrepresentations:questionnaire-yes"),
|
||||
t("myrepresentations:questionnaire-no"),
|
||||
]}
|
||||
id="detailsOfPreviousAppeals"
|
||||
className="govuk-radios__input"
|
||||
errorMsg={t("newappeal:select-an-option-label")}
|
||||
component={RenderLPACondtionalRadioList}
|
||||
validate={[required]}
|
||||
legend={
|
||||
"32. Details of any previous appeal decision relating to the site or a nearby site referred to by the LPA or applicant?"
|
||||
}
|
||||
conditionalLabel={
|
||||
"If Yes, provide the reference number(s) and address(es) and attach or insert links to the decision(s) and any relevant application documents"
|
||||
}
|
||||
optionSelect={"Yes"}
|
||||
legend={t(
|
||||
"myrepresentations:s78-section-question-32"
|
||||
)}
|
||||
conditionalLabel={t(
|
||||
"myrepresentations:s78-section-question-32-hint"
|
||||
)}
|
||||
optionSelect={t(
|
||||
"myrepresentations:questionnaire-yes"
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
<div className="govuk-form-group">
|
||||
<Field
|
||||
name="otherRelevantInformation"
|
||||
datafieldname="otherRelevantInformation"
|
||||
options={["Yes", "No"]}
|
||||
options={[
|
||||
t("myrepresentations:questionnaire-yes"),
|
||||
t("myrepresentations:questionnaire-no"),
|
||||
]}
|
||||
id="otherRelevantInformation"
|
||||
className="govuk-radios__input"
|
||||
errorMsg={t("newappeal:select-an-option-label")}
|
||||
component={RenderLPACondtionalRadioList}
|
||||
validate={[required]}
|
||||
legend={
|
||||
"33. Any other relevant information that we should know about?"
|
||||
}
|
||||
conditionalLabel={
|
||||
"If Yes, provide a brief description and attach or insert links to the relevant details"
|
||||
}
|
||||
optionSelect={"Yes"}
|
||||
legend={t(
|
||||
"myrepresentations:s78-section-question-33"
|
||||
)}
|
||||
conditionalLabel={t(
|
||||
"myrepresentations:s78-section-question-33-hint"
|
||||
)}
|
||||
optionSelect={t(
|
||||
"myrepresentations:questionnaire-yes"
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
</fieldset>
|
||||
@@ -739,7 +923,7 @@ Reason: To support the roll-out of digital communications infrastructure across
|
||||
<div className="govuk-form-group govuk-!-margin-bottom-9">
|
||||
<FileUploadField
|
||||
name={"representationDocuments"}
|
||||
label={"Add your files"}
|
||||
label={t("myrepresentations:add-files-label")}
|
||||
ticketnumber={props.props.caseReference}
|
||||
hint={"sdsd"}
|
||||
fileList={[]}
|
||||
@@ -763,7 +947,9 @@ Reason: To support the roll-out of digital communications infrastructure across
|
||||
data-aria-controls="caseOfficer"
|
||||
type="text"
|
||||
component={RenderTextfield}
|
||||
label="Signed"
|
||||
label={t(
|
||||
"myrepresentations:s78-section-question-signed"
|
||||
)}
|
||||
validate={[required]}
|
||||
/>
|
||||
</div>
|
||||
@@ -777,14 +963,16 @@ Reason: To support the roll-out of digital communications infrastructure across
|
||||
data-aria-controls="caseOfficer"
|
||||
type="text"
|
||||
component={RenderTextfield}
|
||||
label="On behalf of"
|
||||
label={t(
|
||||
"myrepresentations:s78-section-question-onbehalf"
|
||||
)}
|
||||
validate={[required]}
|
||||
/>
|
||||
</div>
|
||||
<Field
|
||||
name="signedDate"
|
||||
id="signedDate"
|
||||
label="Date"
|
||||
label={t("myrepresentations:s78-section-question-date")}
|
||||
component={RenderDatePicker}
|
||||
validate={[required]}
|
||||
errorMsg="Select a date"
|
||||
|
||||
+1
-1
@@ -458,7 +458,7 @@ let RepLPAQuestionnaireCheck_enforcement = (props) => {
|
||||
<>
|
||||
<div className="govuk-summary-list__row">
|
||||
<dt className="govuk-summary-list__key">
|
||||
16. Does the site include any public rights of way?
|
||||
16. {t("myrepresentations:s78-section-question-15")}
|
||||
</dt>
|
||||
|
||||
<dd className="govuk-summary-list__value">
|
||||
|
||||
+1
-1
@@ -458,7 +458,7 @@ let RepLPAQuestionnaireCheck_s78 = (props) => {
|
||||
<>
|
||||
<div className="govuk-summary-list__row">
|
||||
<dt className="govuk-summary-list__key">
|
||||
16. Does the site include any public rights of way?
|
||||
16. {t("myrepresentations:s78-section-question-15")}
|
||||
</dt>
|
||||
|
||||
<dd className="govuk-summary-list__value">
|
||||
|
||||
@@ -141,7 +141,7 @@ const TopThree = (props) => {
|
||||
<div className="cardModuleItem" key={index}>
|
||||
<div className="cardModuleDetails">
|
||||
<div className="cardModuleReference">
|
||||
<b>Representation ID:</b>{" "}
|
||||
<b>{t("myportal:representation-id")}:</b>{" "}
|
||||
<Link
|
||||
href={{
|
||||
pathname: "/myportal/representation",
|
||||
@@ -178,17 +178,17 @@ const TopThree = (props) => {
|
||||
{showTopThreeArr[key].caseRef}
|
||||
</div>
|
||||
<div className="cardModuleReference">
|
||||
<b>Representation type:</b>
|
||||
<b>{t("myportal:representation-type")}:</b>
|
||||
{" "}
|
||||
{showTopThreeArr[key].representationType}
|
||||
</div>
|
||||
<div className="cardModuleReference">
|
||||
<b>Capacity:</b>
|
||||
<b>{t("myportal:capacity")}:</b>
|
||||
{" "}
|
||||
{showTopThreeArr[key].representationCapacity}
|
||||
</div>
|
||||
<div className="cardModuleReference">
|
||||
<b>Date raised:</b>
|
||||
<b>{t("myportal:date-raised")}:</b>
|
||||
{" "}
|
||||
{repRaisedDate(showTopThreeArr[key].repfile_name)}
|
||||
</div>
|
||||
|
||||
@@ -160,7 +160,10 @@ export const EnforcementQuestionnaire_pdf = ({ docProps }) => {
|
||||
>
|
||||
<Text style={styles.questionBullet}>1.</Text>
|
||||
<Text style={styles.questionText}>
|
||||
PEDW reference:
|
||||
{t(
|
||||
"myrepresentations:s78-section-question-1"
|
||||
)}
|
||||
:
|
||||
</Text>
|
||||
<Text style={styles.questionAnswer}>
|
||||
{values.caseRef}
|
||||
@@ -175,7 +178,10 @@ export const EnforcementQuestionnaire_pdf = ({ docProps }) => {
|
||||
>
|
||||
<Text style={styles.questionBullet}>2.</Text>
|
||||
<Text style={styles.questionText}>
|
||||
LPA reference:
|
||||
{t(
|
||||
"myrepresentations:s78-section-question-2"
|
||||
)}
|
||||
:
|
||||
</Text>
|
||||
<Text style={styles.questionAnswer}>
|
||||
{values.lpaRef}
|
||||
@@ -206,7 +212,7 @@ export const EnforcementQuestionnaire_pdf = ({ docProps }) => {
|
||||
}}
|
||||
>
|
||||
<Text style={{ fontSize: 14 }}>
|
||||
Appeal procedure and site visit
|
||||
{t("myrepresentations:s78-section-heading-one")}
|
||||
</Text>
|
||||
</View>
|
||||
<View style={styles.sectionContainer}>
|
||||
|
||||
@@ -159,7 +159,10 @@ export const finalComments_pdf = ({ docProps }) => {
|
||||
>
|
||||
<Text style={styles.questionBullet}>1.</Text>
|
||||
<Text style={styles.questionText}>
|
||||
PEDW reference:
|
||||
{t(
|
||||
"myrepresentations:s78-section-question-1"
|
||||
)}
|
||||
:
|
||||
</Text>
|
||||
<Text style={styles.questionAnswer}>
|
||||
{values.caseRef}
|
||||
|
||||
@@ -162,7 +162,10 @@ export const lpaQuestionnaire_pdf = ({ docProps }) => {
|
||||
>
|
||||
<Text style={styles.questionBullet}>1.</Text>
|
||||
<Text style={styles.questionText}>
|
||||
PEDW reference:
|
||||
{t(
|
||||
"myrepresentations:s78-section-question-1"
|
||||
)}
|
||||
:
|
||||
</Text>
|
||||
<Text style={styles.questionAnswer}>
|
||||
{values.caseRef}
|
||||
@@ -177,7 +180,10 @@ export const lpaQuestionnaire_pdf = ({ docProps }) => {
|
||||
>
|
||||
<Text style={styles.questionBullet}>2.</Text>
|
||||
<Text style={styles.questionText}>
|
||||
LPA reference:
|
||||
{t(
|
||||
"myrepresentations:s78-section-question-2"
|
||||
)}
|
||||
:
|
||||
</Text>
|
||||
<Text style={styles.questionAnswer}>
|
||||
{values.lpaRef}
|
||||
@@ -223,7 +229,7 @@ export const lpaQuestionnaire_pdf = ({ docProps }) => {
|
||||
}}
|
||||
>
|
||||
<Text style={{ fontSize: 14 }}>
|
||||
Appeal procedure and site visit
|
||||
{t("myrepresentations:s78-section-heading-one")}
|
||||
</Text>
|
||||
</View>
|
||||
<View style={styles.sectionContainer}>
|
||||
|
||||
@@ -163,7 +163,10 @@ export const other_pdf = ({ docProps }) => {
|
||||
>
|
||||
<Text style={styles.questionBullet}>1.</Text>
|
||||
<Text style={styles.questionText}>
|
||||
PEDW reference:
|
||||
{t(
|
||||
"myrepresentations:s78-section-question-1"
|
||||
)}
|
||||
:
|
||||
</Text>
|
||||
<Text style={styles.questionAnswer}>
|
||||
{values.caseRef}
|
||||
|
||||
@@ -195,7 +195,10 @@ export const planningappeals78_pdf = ({ docProps }) => {
|
||||
>
|
||||
<Text style={styles.questionBullet}>1.</Text>
|
||||
<Text style={styles.questionText}>
|
||||
PEDW reference:
|
||||
{t(
|
||||
"myrepresentations:s78-section-question-1"
|
||||
)}
|
||||
:
|
||||
</Text>
|
||||
<Text style={styles.questionAnswer}>
|
||||
{values.caseRef}
|
||||
|
||||
@@ -159,7 +159,10 @@ export const statement_pdf = ({ docProps }) => {
|
||||
>
|
||||
<Text style={styles.questionBullet}>1.</Text>
|
||||
<Text style={styles.questionText}>
|
||||
PEDW reference:
|
||||
{t(
|
||||
"myrepresentations:s78-section-question-1"
|
||||
)}
|
||||
:
|
||||
</Text>
|
||||
<Text style={styles.questionAnswer}>
|
||||
{values.caseRef}
|
||||
|
||||
@@ -159,7 +159,10 @@ export const writtenStatement_pdf = ({ docProps }) => {
|
||||
>
|
||||
<Text style={styles.questionBullet}>1.</Text>
|
||||
<Text style={styles.questionText}>
|
||||
PEDW reference:
|
||||
{t(
|
||||
"myrepresentations:s78-section-question-1"
|
||||
)}
|
||||
:
|
||||
</Text>
|
||||
<Text style={styles.questionAnswer}>
|
||||
{values.caseRef}
|
||||
|
||||
@@ -30,7 +30,7 @@ module.exports = {
|
||||
"/searchresults": ["search", "case"],
|
||||
"/viewall": ["search"],
|
||||
"/case": ["case"],
|
||||
"/myportal/representation": ["case"],
|
||||
"/myportal/representation": ["case", "myrepresentations", "common"],
|
||||
"/myportal/error": ["myportal", "common"],
|
||||
"/newappeal": ["newappeal"],
|
||||
"/newappeal/*": ["newappeal"],
|
||||
|
||||
@@ -33,5 +33,9 @@
|
||||
"norecords-awaiting-submissions": "Nid oes gennych unrhyw gyflwyniadau sy'n aros",
|
||||
"on-behalf-of-label": "Ar ran",
|
||||
"appeal-type-label": "Math o apêl",
|
||||
"raised-by-label": "Codwyd gan"
|
||||
"raised-by-label": "Codwyd gan",
|
||||
"representation-id": "Id cynrychiolaeth",
|
||||
"representation-type": "Math o gynrychiolaeth",
|
||||
"capacity": "Gallu",
|
||||
"date-raised": "Dyddiad codi"
|
||||
}
|
||||
@@ -0,0 +1,188 @@
|
||||
{
|
||||
"make-a-representation-on-label": "Gwnewch gynrychioliad ar",
|
||||
"make-a-representation-for-label": "Gwnewch gynrychiolaeth ar gyfer",
|
||||
"timetable-title": "Amserlen",
|
||||
"questionnaire-due-label": "Holiadur yn ddyledus",
|
||||
"statements-due-label": "Datganiadau yn ddyledus",
|
||||
"final-comments-due-label": "Sylwadau terfynol yn ddyledus",
|
||||
"representation-from-an-agent-heading": "Cynrychiolaeth gan Asiant",
|
||||
"representation-from-an-appellant-heading": "Cynrychiolaeth gan Apelydd",
|
||||
"representation-from-an-interested-person-heading": "Cynrychiolaeth gan Barti/Person â Diddordeb",
|
||||
"kind-of-rep-label": "Pa fath o gynrychiolaeth ydych chi'n ei wneud?",
|
||||
"enter-comment-label": "Gallwch nodi eich sylwadau yn y gofod a ddarperir neu atodi dogfen ar wahân.",
|
||||
"comments-set-out-label": "Mae fy sylwadau wedi'u nodi yn",
|
||||
"publish-policy-label": "Sylwch y gall yr holl sylwadau gael eu cyhoeddi yn unol â'n Polisi Cyhoeddi. Os bydd eich sylw yn cynnwys unrhyw wybodaeth sensitif neu wybodaeth a allai fod yn ddifenwol, efallai y caiff ei olygu cyn ei gyhoeddi. Os yw'n cynnwys cynnwys hiliol, enllibus neu sarhaus caiff ei ddychwelyd atoch a gofynnir i chi ddarparu fersiwn ddiwygiedig.",
|
||||
"questionnaire-publish-policy-label": "Sylwch y gall holl ddogfennau holiadur gael eu cyhoeddi yn unol â'n Polisi Cyhoeddi. Os bydd eich holiadur yn cynnwys unrhyw wybodaeth sensitif neu wybodaeth a allai fod yn ddifenwol, efallai y caiff ei olygu cyn ei gyhoeddi",
|
||||
"add-files-label": "Ychwanegwch eich ffeiliau",
|
||||
"capacity-para-one": "Mae'r ffurflen hon yn eich galluogi i gyflwyno sylwadau ar achos i Benderfyniadau Cynllunio ac Amgylchedd Cymru.",
|
||||
"capacity-para-two": "Sylwch fod angen gwneud sylwadau gan bartïon â diddordeb o fewn yr amserlen. Mae hwn i'w weld ar y ‘Crynodeb Achos‘ tudalen. Gall sylwadau a gyflwynir ar ôl y dyddiad hwn gael eu hystyried yn annilys.",
|
||||
"capacity-select-your-details": "Eich manylion",
|
||||
"capacity-select-what-capacity-label": "Ym mha rinwedd ydych chi am gyflwyno sylwadau ar yr achos hwn?",
|
||||
"capacity-options-arr-appellant": "Apelydd",
|
||||
"capacity-options-arr-agent": "Asiant",
|
||||
"capacity-options-arr-interested": "Parti â diddordeb",
|
||||
"rep-check-submit-heading": "Gwiriwch eich cynrychiolaeth",
|
||||
"rep-check-your-rep-heading": "Eich cynrychiolaeth",
|
||||
"rep-check-tandc-para-one": "Mae casglu a phrosesu dilynol y data personol a ddarparwyd gennych chi ar y ffurflen hon, yn unol â thelerau ein cofrestriad o dan Ddeddf Diogelu Data 2018.",
|
||||
"rep-check-tandc-para-two": "Mae’r Arolygiaeth Gynllunio yn cymryd ei chyfrifoldebau diogelu data am y wybodaeth a roddwch i ni o ddifrif. I gael gwybod mwy am sut rydym yn defnyddio ac yn rheoli eich data personol, ewch i'n hysbysiad preifatrwydd.",
|
||||
"rep-check-tandc-para-three": "Cadarnhaf fod pob adran o’r ffurflen hon wedi’u llenwi’n llawn a bod y manylion yn gywir hyd eithaf fy ngwybodaeth.",
|
||||
"rep-check-tandc-para-four": "Cadarnhaf fy mod wedi darllen yr uchod.",
|
||||
"rep-complete-heading": "Cyflwyno Sylwadau",
|
||||
"rep-complete-para-one": "Diolch i chi am gyflwyno eich sylw(au) gan ddefnyddio'r Porth Gwaith Achos Apeliadau.",
|
||||
"rep-complete-para-two": "Cofiwch fod angen i ni dderbyn unrhyw ddogfennaeth ategol o fewn y terfyn amser priodol ar gyfer yr achos. Rhaid i unrhyw beth y byddwch yn ei anfon atom gael ei farcio'n glir gyda chyfeirnod yr achos a chyfeiriad y safle (gan gynnwys y cod post, os yw'n hysbys).",
|
||||
"rep-complete-para-three": "Byddwch yn derbyn cadarnhad yn fuan i'r cyfeiriad e-bost yr ydych wedi'i ddarparu.",
|
||||
"lpa-capacity-para-one": "Mae’r ffurflen hon yn eich galluogi i gyflwyno datganiadau, sylwadau ac holiaduron ar achos i Benderfyniadau Cynllunio ac Amgylchedd Cymru.",
|
||||
"s78-section-heading-one": "Trefn apelio ac ymweliad safle",
|
||||
"s78-section-question-1": "Cyfeirnod PEDW:",
|
||||
"s78-section-question-2": "Cyfeirnod yr LPA:",
|
||||
"s78-section-question-4": "Math o apêl:",
|
||||
"s78-section-question-3": "Cyfeiriad Safle:",
|
||||
"s78-section-question-5": "Pa weithdrefn ydych chi'n ystyried y dylai'r apêl ei dilyn?",
|
||||
"s78-section-question-6": "A fydd angen i'r Arolygydd fynd i mewn i safle/eiddo'r apźl?",
|
||||
"s78-section-question-7": "A ydych yn ystyried bod angen i'r Arolygydd fynd ar dir/eiddo preifat cyfagos i weld y safle?",
|
||||
"s78-section-question-8": "Os oes angen mynediad i dir/adeiladau preifat, a ydych yn fodlon i’r Arolygydd ymweld â’r safle ar sail ‘angen mynediad’, gyda dim ond y tirfeddiannwr neu ei gynrychiolydd yn bresennol?",
|
||||
"s78-section-question-9": "A ydych yn ymwybodol o unrhyw faterion iechyd a diogelwch y byddai angen eu hystyried pan fydd yr Arolygydd yn ymweld â'r safle?",
|
||||
"s78-section-question-10": "Cyswllt ACLl ar gyfer ymweliad safle, gwrandawiad neu drefniadau ymchwiliad:",
|
||||
"s78-section-heading-two": "Dogfennau ategol",
|
||||
"s78-section-question-11": "Ffeil achos yr ACLl a sylwadau",
|
||||
"s78-section-question-11-hint": "Mewnosod dolen(nau) gwe i ffeil achos a sylwadau ar borth cyhoeddus yr ACLl. Rhaid i hyn gynnwys yr holl ddogfennau a oedd gerbron yr ACLl ar adeg ei benderfyniad neu pan wnaed yr apêl. Sicrhewch eich bod yn cysylltu’n uniongyrchol â’r rhestr dogfennau achos, nid â thudalen generig ar borth yr ACLl. Os gwnaed sylwadau ar y we hefyd, rhowch ail ddolen i'r dudalen honno. Fel arall, nodwch yma os ydych yn anfon dogfennau ffeil achos perthnasol o dan glawr ar wahân.",
|
||||
"s78-section-question-12": "Cynllun datblygu lleol mabwysiedig yr ACLl a’r Map Cynigion:",
|
||||
"s78-section-question-12-hint": "Mewnosod dolenni gwe i Ddatganiad Ysgrifenedig y CDLl/CDU mabwysiedig, a'r Map Cynigion cysylltiedig (gan gynnwys allwedd map). Fel arall, rhestrwch y polisïau perthnasol yma ac atodwch ddyfyniadau.",
|
||||
"s78-section-question-13": "Canllawiau lleol wedi'u mabwysiadu sy'n berthnasol i'r cynnig",
|
||||
"s78-section-question-13-hint": "Mewnosod dolen(nau) gwe i unrhyw ganllawiau lleol perthnasol (e.e. Canllawiau Cynllunio Atodol, gwerthusiadau Ardaloedd Cadwraeth) y mae’r ACLl yn eu hystyried yn berthnasol, gan nodi enw’r ddogfen cyn y ddolen we. Fel arall, rhestrwch y canllawiau perthnasol ac atodwch gopïau/dyfyniadau.",
|
||||
"s78-section-question-14": "Os yw'n berthnasol, a ydych yn bwriadu cyflwyno datganiad llawn yn ystod y cyfnod 4 wythnos?",
|
||||
"s78-section-heading-three": "Ystyriaeth statudols",
|
||||
"s78-section-question-15": "Ydy’r safle cyfan neu ran ohono o fewn Ardal o Harddwch Naturiol Eithriadol?",
|
||||
"s78-section-question-16": "A yw'r safle'n cynnwys unrhyw hawliau tramwy cyhoeddus?",
|
||||
"s78-section-question-16-hint": "Os Oes, atodwch neu mewnosodwch ddolen i'r map a'r datganiad diffiniol ar gyfer yr ardal leol",
|
||||
"s78-section-question-17": "Ydy’r safle cyfan neu ran ohono o fewn Ardal Gadwraeth?",
|
||||
"s78-section-question-17-hint": "Os Oes, atodwch neu mewnosodwch ddolenni i gynllun sy'n dangos ffin yr Ardal Gadwraeth",
|
||||
"s78-section-question-18": "A fyddai’r cynnig yn golygu gwaith i, neu’n effeithio ar leoliad, adeilad rhestredig, Heneb Gofrestredig neu ased hanesyddol dynodedig arall?",
|
||||
"s78-section-question-18-hint": "Os Oes, atodwch neu mewnosodwch ddolenni i'r disgrifiad(au) rhestru a'r cynllun lleoliad",
|
||||
"s78-section-question-19": "A oes unrhyw ran o'r safle yn destun Gorchymyn Cadw Coed?",
|
||||
"s78-section-question-19-hint": "Os Oes, atodwch neu rhowch ddolenni i'r cynllun a'r manylion perthnasol",
|
||||
"s78-section-question-20": "A yw’r safle o fewn neu’n debygol o effeithio ar Safle Dynodedig Rhyngwladol neu Genedlaethol ar gyfer cadwraeth natur (fel y’i diffinnir ym Mholisi Cynllunio Cymru)?",
|
||||
"s78-section-question-20-hint": "Os Oes, nodwch yr enw ac atodwch unrhyw fanylion perthnasol",
|
||||
"s78-section-question-21": "A yw unrhyw rywogaethau a warchodir yn debygol o gael eu heffeithio gan y cynnig?",
|
||||
"s78-section-question-21-hint": "Os Oes, nodwch pa un ac atodwch unrhyw fanylion perthnasol",
|
||||
"s78-section-question-22": "A yw'r achos yn ymwneud â phobl sy'n hawlio statws Sipsiwn/Teithwyr, p'un a yw'r ACLl yn derbyn hyn ai peidio?",
|
||||
"s78-section-question-23": "A ydych wedi derbyn sylwadau neu gyfarwyddiadau gan unrhyw adran/asiantaeth o’r llywodraeth neu ymgymerwr statudol, gan gynnwys mewn ymateb i hysbysiad statudol neu ymgynghoriad?",
|
||||
"s78-section-question-23-hint": "Os Oes, nodwch pa un ac atodwch unrhyw fanylion perthnasol",
|
||||
"s78-section-heading-four": "Amodau a awgrymir",
|
||||
"s78-section-question-24": "Adolygu’r amodau safonol canlynol a chynghori a fyddent yn angenrheidiol pe bai caniatâd yn cael ei roi (ddim yn berthnasol i gynigion caniatâd 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 o Ddeddf Cynllunio Gwlad a Thref 1990 / Adran 18 o Ddeddf 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 a ganlyn: .................................... Rheswm: Er mwyn sicrhau'r datblygiad yn cael ei wneud yn unol â’r dogfennau, cynlluniau a lluniadau cymeradwy a gyflwynwyd gyda’r cais.",
|
||||
"s78-section-question-24b-hint": "Os Oes, rhestrwch y cynlluniau, dogfennau a lluniadau cymeradwy yma neu rhestrwch nhw mewn dogfen atodedig",
|
||||
"s78-section-question-24c": "c) Ni chaniateir unrhyw ddatblygiad hyd nes y bydd cynllun gwella bioamrywiaeth wedi ei gyflwyno i'r awdurdod cynllunio lleol a'i gytuno'n ysgrifenedig ganddo. Bydd datblygiad yn cael ei wneud yn unol â'r manylion a gymeradwywyd. Rheswm: Er budd cynnal a gwella bioamrywiaeth, yn unol â Pholisi 9 Cymru’r Dyfodol.",
|
||||
"s78-section-question-24d": "d) Ni chyflawnir unrhyw ddatblygiad hyd nes y bydd cynllun i alluogi darparu seilwaith band eang galluog gigabit o ffin y safle i’r anheddau/adeiladau a ganiateir drwy hyn wedi’i gyflwyno i’r awdurdod cynllunio lleol a’i gytuno’n ysgrifenedig ganddo. Bydd datblygiad yn cael ei wneud yn unol â'r manylion a gymeradwywyd. Rheswm: Cefnogi’r gwaith o gyflwyno seilwaith cyfathrebu digidol ledled Cymru yn unol â Pholisi 13 Cymru’r 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 Oes, rhestrwch nhw yma neu mewn dogfen atodedig. Cynnwys rhesymau a pholisïau cynllun datblygu perthnasol. Os ydych yn bwriadu anfon amodau a awgrymir ochr yn ochr â’ch datganiad 4 wythnos, nodwch hyn yma.",
|
||||
"s78-section-heading-five": "Cyn anfon, ydych chi wedi atodi neu ddarparu dolen we i:",
|
||||
"s78-section-question-26": "Copi o dystysgrif yr ymgeisydd yn 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 rhybuddion safle a hysbyseb lleol?**",
|
||||
"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 y gwnaethoch hysbysu pobl am yr apêl gydag ef A 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",
|
||||
"s78-section-question-29": "Barn Sgrinio Asesiad o’r Effaith Amgylcheddol yr ACLl, os yw’n berthnasol?",
|
||||
"s78-section-question-29-hint": "Rhowch ddolen we yma os yw ar gael ar-lein. Os Na, rhowch resymau",
|
||||
"s78-section-question-30": "Cynigion caniatâd hysbyseb yn unig: Copi cywir o'r Hysbysiad Terfynu (os oes un wedi'i gyhoeddi)?",
|
||||
"s78-section-question-30-hint": "Os Oes, nodwch sut mae defnyddio'r safle neu arddangos yr hysbyseb(ion) yn mwynhau budd caniatâd tybiedig",
|
||||
"s78-section-question-31": "Manylion apeliadau neu geisiadau eraill sy’n ymwneud â’r safle, neu safle cyfagos, sy’n dal i gael eu hystyried gan PEDW neu Weinidogion Cymru?",
|
||||
"s78-section-question-31-hint": "Os Oes, rhowch rifau cyfeirnod ac, os yw'n berthnasol, atodwch neu rhowch ddolenni i'r dogfennau perthnasol",
|
||||
"s78-section-question-32": "Manylion unrhyw benderfyniad apêl blaenorol yn ymwneud â’r safle neu safle cyfagos y cyfeiriwyd ato gan yr ACLl neu’r ymgeisydd?",
|
||||
"s78-section-question-32-hint": "Os Oes, rhowch y rhif(au) cyfeirnod a’r cyfeiriad(au) ac atodwch neu mewnosodwch ddolenni i’r penderfyniad(au) ac unrhyw ddogfennau cais perthnasol",
|
||||
"s78-section-question-33": "Unrhyw wybodaeth berthnasol arall y dylem wybod amdani?",
|
||||
"s78-section-question-33-hint": "Os Oes, rhowch ddisgrifiad byr ac atodwch neu mewnosodwch ddolenni i'r manylion perthnasol",
|
||||
"s78-section-heading-seven": "Datganiad",
|
||||
"s78-section-question-signed": "Llofnodwyd",
|
||||
"s78-section-question-onbehalf": "Ar ran",
|
||||
"s78-section-question-date": "Dyddiad",
|
||||
"enf-section-heading-one": "Trefn apelio ac ymweliad safle",
|
||||
"enf-section-question-1": "Cyfeirnod PEDW:",
|
||||
"enf-section-question-2": "Cyfeirnod yr ACLl:",
|
||||
"enf-section-question-3": "Cyfeiriad y Safle:",
|
||||
"enf-section-question-4": "Pa weithdrefn y dylai'r apêl ei dilyn yn eich barn chi?",
|
||||
"enf-section-question-4-hint": "Os Gwrandawiad neu Ymholiad, rhowch resymau yma pam yr ydych yn ystyried bod cyfiawnhad dros hyn. Os ydych yn ystyried bod angen Ymchwiliad, nodwch nifer amcangyfrifedig y diwrnodau eistedd.",
|
||||
"enf-section-question-5": "A fydd angen i'r Arolygydd fynd i mewn i safle/eiddo'r apźl?",
|
||||
"enf-section-question-6": "A ydych yn ystyried bod angen i'r Arolygydd fynd ar dir/eiddo preifat cyfagos i weld y safle?",
|
||||
"enf-section-question-6-hint": "Os Oes, rhowch resymau a rhowch gyfeiriad y safle cyfagos. Os oes gennych rai, rhowch fanylion cyswllt y tirfeddiannwr mewn atodiad.",
|
||||
"enf-section-question-7": "Os oes angen mynediad i dir/adeiladau preifat, a ydych yn fodlon i'r Arolygydd ymweld â'r safle ar sail 'angen mynediad', gyda dim ond y tirfeddiannwr neu ei gynrychiolydd yn bresennol?",
|
||||
"enf-section-question-7-hint": "Os Na, rhowch resymau pam yr ydych yn ystyried bod angen Ymweliad Safle Cydymaith",
|
||||
"enf-section-question-8": "A ydych yn ymwybodol o unrhyw faterion iechyd a diogelwch y byddai angen eu hystyried pan fydd yr Arolygydd yn ymweld â'r safle?",
|
||||
"enf-section-question-8-hint": "Os Oes, disgrifiwch y materion iechyd a diogelwch i'w hystyried",
|
||||
"enf-section-question-9": "Cyswllt ACLl ar gyfer trefniadau ymweliad safle, gwrandawiad neu ymholiad:",
|
||||
"enf-section-heading-two": "Ffi Ymgeisio Tybiedig",
|
||||
"enf-section-question-10": "A yw'r awdurdod cynllunio lleol wedi derbyn y ffi gywir sy'n daladwy mewn perthynas â'r apêl hon er mwyn i'r cais cynllunio tybiedig/sail (a) gael ei ystyried?",
|
||||
"enf-section-question-11": "A yw ffi'r apêl wedi'i heithrio?",
|
||||
"enf-section-question-11-hint": "Os Oes, eglurwch",
|
||||
"enf-section-heading-three": "Hanes Cynllunio a Statws Presennol",
|
||||
"enf-section-question-12": "A oes unrhyw ganiatâd cynllunio neu dystysgrifau datblygiad cyfreithlon wedi'u rhoi yn flaenorol mewn perthynas â'r datblygiad neu ar y safle?",
|
||||
"enf-section-question-12-hint": "Os Oes, cyflwynwch unrhyw ddogfennau angenrheidiol ar gyfer ei ddehongli a'i restru yma. e.e. Hysbysiad o Benderfyniad, Cynlluniau Perthnasol, ac ati.",
|
||||
"enf-section-question-13": "A gyflwynwyd Hysbysiad Atal yn ogystal â'r Hysbysiad Gorfodi?",
|
||||
"enf-section-question-13-hint": "Os Oes, cyflwynwch gopi o'r Hysbysiad Atal a chofnodwch unrhyw wybodaeth berthnasol yma.",
|
||||
"enf-section-question-14": "A oes unrhyw achosion cysylltiedig (e.e. apeliadau o dan a78 o Ddeddf Cynllunio Gwlad a Thref 1990) sydd ar hyn o bryd neu wedi bod gerbron Gweinidogion Cymru?",
|
||||
"enf-section-question-14-hint": "Os Oes, rhowch fanylion yma, gan gynnwys cyfeirnodau apêl.",
|
||||
"enf-section-question-15": "A fu unrhyw gamau gorfodi blaenorol ar y safle?",
|
||||
"enf-section-question-15-hint": "Os Oes, rhowch fanylion a chyflwynwch unrhyw ddogfennau perthnasol, gan eu rhestru yma.",
|
||||
"enf-section-question-16": "A yw'r wefan yn destun Cyfarwyddyd Erthygl 4?",
|
||||
"enf-section-question-16-hint": "Os Oes, rhowch fanylion a chyflwynwch gopi o'r Cyfarwyddyd perthnasol.",
|
||||
"enf-section-question-17": "A yw hawliau datblygu a ganiateir wedi'u cyfyngu gan unrhyw amod cynllunio blaenorol?",
|
||||
"enf-section-question-17-hint": "Os Oes, rhowch fanylion a chyflwynwch unrhyw ddogfennau perthnasol, gan eu rhestru yma.",
|
||||
"enf-section-heading-four": "Dogfennau Ategol",
|
||||
"enf-section-question-18": "Cynllun datblygu lleol mabwysiedig yr ACLl a'r Map Cynigion:",
|
||||
"enf-section-question-18-hint": "Rhowch ddolenni gwe i Ddatganiad Ysgrifenedig y CDLl/CDU mabwysiedig, a'r Map Cynigion cysylltiedig (gan gynnwys allwedd map). Fel arall, rhestrwch y polisïau perthnasol yma ac atodwch ddyfyniadau.",
|
||||
"enf-section-question-19": "Canllawiau lleol wedi'u mabwysiadu sy'n berthnasol i'r cynnig",
|
||||
"enf-section-question-19-hint": "Rhowch ddolen(nau) gwe i unrhyw ganllawiau lleol perthnasol (e.e. Canllawiau Cynllunio Atodol, gwerthusiadau Ardaloedd Cadwraeth) y mae'r ACLl yn eu hystyried yn berthnasol, gan nodi enw'r ddogfen cyn y ddolen we. Fel arall , rhestrwch y canllawiau perthnasol ac atodwch gopïau/dyfyniadau.",
|
||||
"enf-section-question-20": "Os yw'n berthnasol, a ydych yn bwriadu cyflwyno datganiad llawn yn ystod y cyfnod 4 wythnos?",
|
||||
"enf-section-heading-five": "Ystyriaethau statudol",
|
||||
"enf-section-question-21": "A yw'r safle cyfan neu ran ohono o fewn Ardal o Harddwch Naturiol Eithriadol?",
|
||||
"enf-section-question-22": "A yw'r safle yn cynnwys unrhyw hawliau tramwy cyhoeddus?",
|
||||
"enf-section-question-22-hint": "Os Oes, atodwch neu mewnosodwch ddolen i'r map a datganiad diffiniol ar gyfer yr ardal leol",
|
||||
"enf-section-question-23": "A yw'r safle cyfan neu ran ohono o fewn Ardal Gadwraeth?",
|
||||
"enf-section-question-23-hint": "Os Oes, atodwch neu mewnosodwch ddolenni i gynllun sy'n dangos ffin yr Ardal Gadwraeth",
|
||||
"enf-section-question-24": "A yw'r datblygiad yn cynnwys gwaith i, neu'n effeithio ar leoliad, adeilad rhestredig, Heneb Gofrestredig neu ased hanesyddol dynodedig arall?",
|
||||
"enf-section-question-24-hint": "Os Oes, atodwch neu mewnosodwch ddolenni i'r disgrifiad(au) rhestru a'r cynllun lleoliad",
|
||||
"enf-section-question-25": "A oes unrhyw ran o'r safle yn destun Gorchymyn Cadw Coed?",
|
||||
"enf-section-question-25-hint": "Os Oes, atodwch neu mewnosodwch ddolenni i'r cynllun a'r manylion perthnasol",
|
||||
"enf-section-question-26": "A yw'r safle o fewn neu'n debygol o effeithio ar Safle Dynodedig Rhyngwladol neu Genedlaethol ar gyfer cadwraeth natur (fel y'i diffinnir ym Mholisi Cynllunio Cymru)?",
|
||||
"enf-section-question-26-hint": "Os Oes, nodwch yr enw ac atodwch unrhyw fanylion perthnasol",
|
||||
"enf-section-question-27": "A yw unrhyw rywogaethau a warchodir yn debygol o gael eu heffeithio gan y cynnig?",
|
||||
"enf-section-question-27-hint": "Os Oes, nodwch pa un ac atodwch unrhyw fanylion perthnasol",
|
||||
"enf-section-question-28": "A yw'r achos yn ymwneud â phobl sy'n hawlio statws Sipsiwn/Teithwyr, p'un a yw'r ACLl yn derbyn hyn ai peidio?",
|
||||
"enf-section-question-29": "A yw llifogydd yn broblem?",
|
||||
"enf-section-question-29-hint": "Os Oes, nodwch ac atodwch unrhyw fanylion perthnasol",
|
||||
"enf-section-question-30": "A ydych wedi derbyn sylwadau neu gyfarwyddiadau gan unrhyw adran/asiantaeth o'r llywodraeth neu ymgymerwr statudol, gan gynnwys mewn ymateb i hysbysiad statudol neu ymgynghoriad?",
|
||||
"enf-section-question-30-hint": "Os Oes, nodwch pa un ac atodwch unrhyw fanylion perthnasol",
|
||||
"enf-section-heading-six": "Amodau a awgrymir",
|
||||
"enf-section-question-31": "Adolygu'r amodau safonol canlynol a chynghori a fyddent yn angenrheidiol os rhoddir caniatâd (amherthnasol i gynigion caniatâd Hysbyseb):",
|
||||
"enf-section-question-31a": "Rhaid cyflawni'r datblygiad yn unol â'r cynlluniau a'r dogfennau cymeradwy a ganlyn: ............................. Rheswm: Er mwyn sicrhau bod y datblygiad yn cael ei wneud yn unol â'r dogfennau, cynlluniau a lluniadau a gymeradwywyd a gyflwynwyd gyda'r cais.",
|
||||
"enf-section-question-31a-hint": "Os Oes, rhestrwch y cynlluniau, y dogfennau a'r lluniadau a gymeradwywyd yma neu rhestrwch nhw mewn dogfen atodedig",
|
||||
"enf-section-question-31b": "Ni chaniateir unrhyw waith datblygu hyd nes y bydd cynllun gwella bioamrywiaeth wedi'i gyflwyno i'r awdurdod cynllunio lleol a'i gytuno'n ysgrifenedig ganddo. Rhaid cyflawni'r datblygiad yn unol â'r manylion a gymeradwywyd. Rheswm: Er budd cynnal a gwella bioamrywiaeth, yn unol â Pholisi Cymru’r Dyfodol 9.",
|
||||
"enf-section-question-31c": "Ni fydd unrhyw ddatblygiad yn digwydd hyd nes y bydd cynllun i alluogi darparu seilwaith band eang galluog gigabit o ffin y safle i'r anheddau/adeiladau a ganiateir drwy hyn wedi'i gyflwyno a'i gytuno'n ysgrifenedig ganddynt. yr awdurdod cynllunio lleol Bydd datblygiad yn cael ei wneud yn unol â'r manylion a gymeradwywyd Rheswm: Er mwyn cefnogi'r gwaith o gyflwyno seilwaith cyfathrebu digidol ledled Cymru yn unol â Pholisi 13 Cymru'r Dyfodol.",
|
||||
"enf-section-question-32": "A ydych yn ystyried bod amodau eraill, neu fersiynau diwygiedig o'r amodau safonol uchod, yn angenrheidiol?",
|
||||
"enf-section-question-32-hint": "Os Oes, rhestrwch nhw yma neu mewn dogfen atodedig. Cynhwyswch resymau a pholisïau cynllun datblygu perthnasol. Os ydych yn bwriadu anfon amodau awgrymedig ochr yn ochr â'ch datganiad 4 wythnos, nodwch hyn yma.",
|
||||
"enf-section-heading-seven": "Cyn anfon, ydych chi wedi atodi neu ddarparu dolen we i:",
|
||||
"enf-section-question-33": "Copi gwir o'r hysbysiad gorfodi?",
|
||||
"enf-section-question-33-hint": "Mewnosodwch ddolen we yma os yw ar gael ar-lein. Os Na, rhowch resymau",
|
||||
"enf-section-question-34": "Cynllun yr hysbysiad gorfodi.",
|
||||
"enf-section-question-34-hint": "Mewnosodwch ddolen we yma os yw ar gael ar-lein. Os Na, rhowch resymau",
|
||||
"enf-section-question-35": "Rhestr o'r rhai y cyflwynwyd yr hysbysiad gorfodi iddynt.",
|
||||
"enf-section-question-35-hint": "Mewnosodwch ddolen we yma os yw ar gael ar-lein. Os Na, rhowch resymau",
|
||||
"enf-section-question-36": "Copi o'r llythyr y gwnaethoch hysbysu pobl am yr apêl gydag ef A rhestr o'r bobl y gwnaethoch eu hysbysu?",
|
||||
"enf-section-question-36-hint": "Mewnosodwch ddolen we yma os yw ar gael ar-lein. Os Na, rhowch resymau",
|
||||
"enf-section-question-37": "Barn Sgrinio Asesiad o'r Effaith Amgylcheddol yr ACLl a 'Hysbysiad Rheoliad 45'*, os yw'n berthnasol?",
|
||||
"enf-section-question-37-hint": "Mewnosodwch ddolen we yma os yw ar gael ar-lein. Os Na, rhowch resymau",
|
||||
"enf-section-question-38": "Manylion apeliadau neu geisiadau eraill sy'n ymwneud â'r safle, neu safle cyfagos, sy'n dal i gael eu hystyried gan PEDW neu Weinidogion Cymru?",
|
||||
"enf-section-question-38-hint": "Os Oes, rhowch rifau cyfeirnod ac, os yw'n berthnasol, atodwch neu mewnosodwch ddolenni i ddogfennau perthnasol",
|
||||
"enf-section-question-39": "Manylion unrhyw benderfyniad apêl blaenorol yn ymwneud â'r safle neu safle cyfagos y cyfeiriwyd ato gan yr ACLl neu'r ymgeisydd?",
|
||||
"enf-section-question-39-hint": "Os Oes, rhowch y cyfeirnod(au) a'r cyfeiriad(au) ac atodwch neu mewnosodwch ddolenni i'r penderfyniad(au) ac unrhyw ddogfennau cais perthnasol",
|
||||
"enf-section-question-40": "Unrhyw wybodaeth berthnasol arall y dylem wybod amdani?",
|
||||
"enf-section-question-40-hint": "Os Oes, rhowch ddisgrifiad byr ac atodwch neu mewnosodwch ddolenni i'r manylion perthnasol",
|
||||
"enf-section-heading-eight": "Datganiad",
|
||||
"enf-section-question-signed": "Arwyddwyd",
|
||||
"enf-section-question-onbehalf": "Ar ran",
|
||||
"enf-section-question-date": "Dyddiad",
|
||||
"questionnaire-yes": "Oes",
|
||||
"questionnaire-no": "Nac ydw"
|
||||
}
|
||||
@@ -33,5 +33,9 @@
|
||||
"norecords-awaiting-submissions": "You have no awaiting submissions",
|
||||
"on-behalf-of-label": "On behalf of",
|
||||
"appeal-type-label": "Appeal type",
|
||||
"raised-by-label": "Raised by"
|
||||
"raised-by-label": "Raised by",
|
||||
"representation-id": "Representation ID",
|
||||
"representation-type": "Representation type",
|
||||
"capacity": "Capacity",
|
||||
"date-raised": "Date raised"
|
||||
}
|
||||
@@ -0,0 +1,188 @@
|
||||
{
|
||||
"make-a-representation-on-label": "Make a representation on",
|
||||
"make-a-representation-for-label": "Make a representation for",
|
||||
"timetable-title": "Timetable",
|
||||
"questionnaire-due-label": "Questionnaire due",
|
||||
"statements-due-label": "Statements due",
|
||||
"final-comments-due-label": "Final comments due",
|
||||
"representation-from-an-agent-heading": "Representation from an Agent",
|
||||
"representation-from-an-appellant-heading": "Representation from an Appellant",
|
||||
"representation-from-an-interested-person-heading": "Representation from an Interested Party/Person",
|
||||
"kind-of-rep-label": "What kind of representation are you making?",
|
||||
"enter-comment-label": "You can enter your comments in the space provided or attach a separate document.",
|
||||
"comments-set-out-label": "My comments are set out in",
|
||||
"publish-policy-label": "Please note that all representations may be published in line with our Publishing Policy. Should your representation include any sensitive information or potentially defamatory information, it may be redacted before publishing. If it contains racist, libellous or offensive content it will be returned to you and you will be asked to provide an amended version.",
|
||||
"questionnaire-publish-policy-label": "Please note that all questionnaire documents may be published in line with our Publishing Policy. Should your questionnaire include any sensitive information or potentially defamatory information, it may be redacted before publishing",
|
||||
"add-files-label": "Add your files",
|
||||
"capacity-para-one": "This form enables you to submit comments on a case to Planning and Environment Decisions Wales.",
|
||||
"capacity-para-two": "Please note that comments 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-select-your-details": "EiYour details",
|
||||
"capacity-select-what-capacity-label": "In what capacity do you wish to make representations on this case?",
|
||||
"capacity-options-arr-appellant": "Appellant",
|
||||
"capacity-options-arr-agent": "Agent",
|
||||
"capacity-options-arr-interested": "Interested party",
|
||||
"rep-check-submit-heading": "Check your representation",
|
||||
"rep-check-your-rep-heading": "Your representation",
|
||||
"rep-check-tandc-para-one": "The gathering and subsequent processing of the personal data supplied by you in this form, is in accordance with the terms of our registration under the Data Protection Act 2018.",
|
||||
"rep-check-tandc-para-two": "The Planning Inspectorate takes its data protection responsibilities for the information you provide us with very seriously. To find out more about how we use and manage your personal data, please go to our privacy notice.",
|
||||
"rep-check-tandc-para-three": "I confirm that all sections of this form have been fully completed and that the details are correct to the best of my knowledge.",
|
||||
"rep-check-tandc-para-four": "I confirm I have read the above.",
|
||||
"rep-complete-heading": "Submission of Representation",
|
||||
"rep-complete-para-one": "Thank you for submitting your representation(s) using the Appeals Casework Portal.",
|
||||
"rep-complete-para-two": "Please remember that any supporting documentation needs to be received by us within the appropriate deadline for the case. Anything you send to us must be clearly marked with the case reference number and the site address (including the postcode, where known).",
|
||||
"rep-complete-para-three": "You will shortly receive confirmation to the email address you have provided.",
|
||||
"lpa-capacity-para-one": "This form enables you to submit statements, comments and questionaires on a case to Planning and Environment Decisions Wales.",
|
||||
"s78-section-heading-one": "Appeal procedure and site visit",
|
||||
"s78-section-question-1": "PEDW Reference: ",
|
||||
"s78-section-question-2": "LPA reference:",
|
||||
"s78-section-question-4": "Appeal type:",
|
||||
"s78-section-question-3": "Site Address: ",
|
||||
"s78-section-question-5": "Which procedure do you consider the appeal should follow?",
|
||||
"s78-section-question-6": "Will the Inspector need to enter the appeal site/property?",
|
||||
"s78-section-question-7": "Do you consider that the Inspector needs to enter neighbouring private land/property to view the site?",
|
||||
"s78-section-question-8": "If access to private land/buildings is required, are you content for the Inspector to visit the site on an ‘access required’ basis, with only the landowner or their representative present?",
|
||||
"s78-section-question-9": "Are you aware of any health and safety issues which would need to be considered when the Inspector visits the site?",
|
||||
"s78-section-question-10": "LPA contact for site visit, hearing or inquiry arrangements:",
|
||||
"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 LPA’s 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 LPA’s 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": "LPA’s 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-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?",
|
||||
"s78-section-question-16-hint": "If Yes, attach or insert a link to the definitive map and statement for the local area",
|
||||
"s78-section-question-17": "Is all or part of the site within a Conservation Area?",
|
||||
"s78-section-question-17-hint": "If Yes, attach or insert links to a plan showing the Conservation Area boundary",
|
||||
"s78-section-question-18": "Would the proposal involve works to, or affect the setting of, a listed building, Scheduled Monument or other designated historic asset?",
|
||||
"s78-section-question-18-hint": "If Yes, attach or insert links to the listing description(s) and location plan",
|
||||
"s78-section-question-19": "Is any part of the site subject to a Tree Preservation Order?",
|
||||
"s78-section-question-19-hint": "If Yes, attach or insert links to the relevant plan and details",
|
||||
"s78-section-question-20": "Is the site within or likely to affect an International or National Designated Site for nature conservation (as defined in Planning Policy Wales)?",
|
||||
"s78-section-question-20-hint": "If Yes, specify the name and attach any relevant details",
|
||||
"s78-section-question-21": "Are any protected species likely to be affected by the proposal?",
|
||||
"s78-section-question-21-hint": "If Yes, specify which and attach any relevant details",
|
||||
"s78-section-question-22": "Does the case involve persons claiming Gypsy/Traveller status, whether or not this is accepted by the LPA?",
|
||||
"s78-section-question-23": "Have you received comments or directions from any government department/agency or statutory undertaker, including in response to a statutory notification or consultation?",
|
||||
"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-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-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-question-26": "A copy of the applicant’s 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-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",
|
||||
"s78-section-question-29": "he LPA’s Environmental Impact Assessment Screening Opinion, if applicable?",
|
||||
"s78-section-question-29-hint": "Insert weblink here if available online. If No, give reasons",
|
||||
"s78-section-question-30": "Advertisement consent proposals only: A true copy of the Discontinuance Notice (if one has been issued)?",
|
||||
"s78-section-question-30-hint": "If Yes, state how the use of the site or the display of the advertisement(s) enjoys the benefit of deemed consent",
|
||||
"s78-section-question-31": "Details of other appeals or applications relating to the site, or a nearby site, which are still being considered by PEDW or the Welsh Ministers?",
|
||||
"s78-section-question-31-hint": "If Yes, provide reference numbers and, if applicable, attach or insert links to relevant documents",
|
||||
"s78-section-question-32": "Details of any previous appeal decision relating to the site or a nearby site referred to by the LPA or applicant?",
|
||||
"s78-section-question-32-hint": "If Yes, provide the reference number(s) and address(es) and attach or insert links to the decision(s) and any relevant application documents",
|
||||
"s78-section-question-33": "Any other relevant information that we should know about?",
|
||||
"s78-section-question-33-hint": "If Yes, provide a brief description and attach or insert links to the relevant details",
|
||||
"s78-section-heading-seven": "Declaration",
|
||||
"s78-section-question-signed": "Signed",
|
||||
"s78-section-question-onbehalf": "On behalf of",
|
||||
"s78-section-question-date": "Date",
|
||||
"enf-section-heading-one": "Appeal procedure and site visit",
|
||||
"enf-section-question-1": "PEDW Reference: ",
|
||||
"enf-section-question-2": "LPA reference:",
|
||||
"enf-section-question-3": "Site Address: ",
|
||||
"enf-section-question-4": "Which procedure do you consider the appeal should follow?",
|
||||
"enf-section-question-4-hint": "If Hearing or Inquiry, provide reasons here for why you consider this to be justified. If you consider an Inquiry is necessary, please state your estimated number of sitting days.",
|
||||
"enf-section-question-5": "Will the Inspector need to enter the appeal site/property?",
|
||||
"enf-section-question-6": "Do you consider that the Inspector needs to enter neighbouring private land/property to view the site?",
|
||||
"enf-section-question-6-hint": "If Yes, give reasons and provide the neighbouring site address. If you have them, provide the contact details of the landowner in an attachment.",
|
||||
"enf-section-question-7": "If access to private land/buildings is required, are you content for the Inspector to visit the site on an ‘access required’ basis, with only the landowner or their representative present?",
|
||||
"enf-section-question-7-hint": "If No, give reasons for why you consider an Accompanied Site Visit to be necessary",
|
||||
"enf-section-question-8": "Are you aware of any health and safety issues which would need to be considered when the Inspector visits the site?",
|
||||
"enf-section-question-8-hint": "If Yes, describe the health and safety issues to be considered",
|
||||
"enf-section-question-9": "LPA contact for site visit, hearing or inquiry arrangements:",
|
||||
"enf-section-heading-two": "Deemed Application Fee",
|
||||
"enf-section-question-10": "Has the local planning authority received the correct fee payable in relation to this appeal for the deemed planning application/ground (a) to be considered?",
|
||||
"enf-section-question-11": "Is the appeal fee exempt?",
|
||||
"enf-section-question-11-hint": "If Yes, please explain",
|
||||
"enf-section-heading-three": "Planning History and Current Statuss",
|
||||
"enf-section-question-12": "Have any planning permissions or lawful development certificates been granted previously in respect of the development or on the site?",
|
||||
"enf-section-question-12-hint": "If Yes, please submit any documents necessary for its interpretation and list here. E.g. Decision Notice, Relevant Plans, etc.",
|
||||
"enf-section-question-13": "Has a Stop Notice been served in addition to the Enforcement Notice?",
|
||||
"enf-section-question-13-hint": "If Yes, please submit a copy of the Stop Notice and record any relevant information here.",
|
||||
"enf-section-question-14": "Are there any related cases (e.g. appeals under s78 of the Town and Country Planning Act 1990) which are currently or have previously been before the Welsh Ministers?",
|
||||
"enf-section-question-14-hint": "If Yes, please provide details here, including appeal reference numbers.",
|
||||
"enf-section-question-15": "Has there been any previous enforcement action on the site?",
|
||||
"enf-section-question-15-hint": "If Yes, please provide details and submit any relevant documents, listing them here.",
|
||||
"enf-section-question-16": "Is the site subject to an Article 4 Direction?",
|
||||
"enf-section-question-16-hint": "If Yes, please provide details and submit a copy of the relevant Direction.",
|
||||
"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": "LPA’s 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-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?",
|
||||
"enf-section-question-22-hint": "If Yes, attach or insert a link to the definitive map and statement for the local area",
|
||||
"enf-section-question-23": "Is all or part of the site within a Conservation Area?",
|
||||
"enf-section-question-23-hint": "If Yes, attach or insert links to a plan showing the Conservation Area boundary",
|
||||
"enf-section-question-24": "Does the development include works to, or affect the setting of, a listed building, Scheduled Monument or other designated historic asset?",
|
||||
"enf-section-question-24-hint": "If Yes, attach or insert links to the listing description(s) and location plan",
|
||||
"enf-section-question-25": "Is any part of the site subject to a Tree Preservation Order?",
|
||||
"enf-section-question-25-hint": "If Yes, attach or insert links to the relevant plan and details",
|
||||
"enf-section-question-26": "Is the site within or likely to affect an International or National Designated Site for nature conservation (as defined in Planning Policy Wales)?",
|
||||
"enf-section-question-26-hint": "If Yes, specify the name and attach any relevant details",
|
||||
"enf-section-question-27": "Are any protected species likely to be affected by the proposal?",
|
||||
"enf-section-question-27-hint": "If Yes, specify which and attach any relevant details",
|
||||
"enf-section-question-28": "Does the case involve persons claiming Gypsy/Traveller status, whether or not this is accepted by the LPA?",
|
||||
"enf-section-question-29": "Is flooding an issue?",
|
||||
"enf-section-question-29-hint": "If Yes, specify which and attach any relevant details",
|
||||
"enf-section-question-30": "Have you received comments or directions from any government department/agency or statutory undertaker, including in response to a statutory notification or consultation?",
|
||||
"enf-section-question-30-hint": "If Yes, specify which and attach any relevant details",
|
||||
"enf-section-heading-six": "Suggested conditions",
|
||||
"enf-section-question-31": "Review the following standard conditions and advise whether they would be necessary if permission/consent is granted (not applicable to Advertisement consent proposals):",
|
||||
"enf-section-question-31a": "a) 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.",
|
||||
"enf-section-question-31a-hint": "If Yes, list the approved plans, documents and drawings here or list them in an attached document",
|
||||
"enf-section-question-31b": "b) 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.",
|
||||
"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-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.",
|
||||
"enf-section-question-34-hint": "Insert weblink here if available online. If No, give reasons",
|
||||
"enf-section-question-35": "A list of those served with the enforcement notice.",
|
||||
"enf-section-question-35-hint": "Insert weblink here if available online. If No, give reasons",
|
||||
"enf-section-question-36": "A copy of the letter with which you notified people of the appeal AND a list of the people you notified?",
|
||||
"enf-section-question-36-hint": "Insert weblink here if available online. If No, give reasons",
|
||||
"enf-section-question-37": "The LPA’s Environmental Impact Assessment Screening Opinion and ‘Regulation 45 Notice’*, if applicable?",
|
||||
"enf-section-question-37-hint": "Insert weblink here if available online. If No, give reasons",
|
||||
"enf-section-question-38": "Details of other appeals or applications relating to the site, or a nearby site, which are still being considered by PEDW or the Welsh Ministers?",
|
||||
"enf-section-question-38-hint": "If Yes, provide reference numbers and, if applicable, attach or insert links to relevant documents",
|
||||
"enf-section-question-39": "Details of any previous appeal decision relating to the site or a nearby site referred to by the LPA or applicant?",
|
||||
"enf-section-question-39-hint": "If Yes, provide the reference number(s) and address(es) and attach or insert links to the decision(s) and any relevant application documents",
|
||||
"enf-section-question-40": "Any other relevant information that we should know about?",
|
||||
"enf-section-question-40-hint": "If Yes, provide a brief description and attach or insert links to the relevant details",
|
||||
"enf-section-heading-eight": "Declaration",
|
||||
"enf-section-question-signed": "Signed",
|
||||
"enf-section-question-onbehalf": "On behalf of",
|
||||
"enf-section-question-date": "Date",
|
||||
"questionnaire-yes": "Yes",
|
||||
"questionnaire-no": "No"
|
||||
}
|
||||
Reference in New Issue
Block a user