-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a0098c6
commit bc9fa2a
Showing
2 changed files
with
33 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,38 @@ | ||
<SaveableForm | ||
@model={{@package}} | ||
as |saveableForm| | ||
@validators={{array (hash) this.validations.SubmittableProjectForm this.validations.SaveableProjectForm}} | ||
as |saveablePackageForm| | ||
> | ||
<div class="grid-x grid-margin-x"> | ||
<div class="cell large-8"> | ||
<section class="form-section"> | ||
<h1 class="header-large"> | ||
Project Initiation Form | ||
</h1> | ||
<p> | ||
1. Display instructional text at the top of the form: The <b>Project Initiation Form</b> begins the project tracking process and gives NYC Planning the necessary details before the Informational Interest meeting. By submitting this form, you confirm your intent to file a Land Use Application with NYC Planning. | ||
</p> | ||
<p> | ||
While some projects might still be in the early stages, all required fields (*) on this form must be completed. Once submitted, your project will be available to view in this portal. After reviewing your submission, NYC Planning will contact you with the next steps. | ||
</p> | ||
</section> | ||
<Packages::Projects::ProjectInformation @form={{saveableForm}} /> | ||
<saveablePackageForm.SaveableForm | ||
@model={{saveablePackageForm.data}} | ||
@validators={{array (hash) this.validations.SaveableProjectForm this.validations.SubmittableProjectForm}} | ||
as |saveableForm|> | ||
{{log 'saveablePackageForm.data' saveablePackageForm.data}} | ||
<div class="grid-x grid-margin-x"> | ||
<div class="cell large-8"> | ||
<section class="form-section"> | ||
<h1 class="header-large"> | ||
Project Initiation Form | ||
</h1> | ||
<p> | ||
1. Display instructional text at the top of the form: The <b>Project Initiation Form</b> begins the project tracking process and gives NYC Planning the necessary details before the Informational Interest meeting. By submitting this form, you confirm your intent to file a Land Use Application with NYC Planning. | ||
</p> | ||
<p> | ||
While some projects might still be in the early stages, all required fields (*) on this form must be completed. Once submitted, your project will be available to view in this portal. After reviewing your submission, NYC Planning will contact you with the next steps. | ||
</p> | ||
</section> | ||
<Packages::Projects::ProjectInformation @form={{saveableForm}} /> | ||
</div> | ||
<div class="cell large-4 sticky-sidebar"> | ||
<saveableForm.SubmitButton | ||
@isEnabled={{saveablePackageForm.isSubmittable}} | ||
@onClick={{this.submitPackage}} | ||
/> | ||
</div> | ||
<saveableForm.ConfirmationModal> | ||
Great job. | ||
</saveableForm.ConfirmationModal> | ||
</div> | ||
<div class="cell large-4 sticky-sidebar"> | ||
<saveableForm.SubmitButton | ||
@isEnabled={{saveableForm.isSaveable}} | ||
@onClick={{this.submitPackage}} | ||
/> | ||
</div> | ||
<saveableForm.ConfirmationModal> | ||
Great job. | ||
</saveableForm.ConfirmationModal> | ||
</div> | ||
</saveablePackageForm.SaveableForm> | ||
|
||
</SaveableForm> |