diff --git a/styles/elements/_panels.scss b/styles/elements/_panels.scss index 87435b44..89877659 100644 --- a/styles/elements/_panels.scss +++ b/styles/elements/_panels.scss @@ -120,9 +120,9 @@ @include panel-actions; } - hr { + hr, &__break { border: 0; - border-bottom: 1px dashed $color-gray-light; + border-bottom: 1px solid $color-gray-light; margin: ($gap * 4) ($site-margins * -4); } } diff --git a/templates/applications/new/step_1.html b/templates/applications/new/step_1.html index 30db02a3..faf6656d 100644 --- a/templates/applications/new/step_1.html +++ b/templates/applications/new/step_1.html @@ -7,14 +7,14 @@ {% set secondary_breadcrumb = 'portfolios.applications.new_application_title' | translate %} {% if application_id %} - {% set action = url_for('applications.update_new_application_step_1', portfolio_id=portfolio.id, application_id=application_id) %} + {% set action = url_for('applications.update_new_application_step_1', application_id=application_id) %} {% else %} {% set action = url_for('applications.create_new_application_step_1', portfolio_id=portfolio.id, application_id=application_id) %} {% endif %} {% block portfolio_header %} {% include "portfolios/header.html" %} - {{ StickyCTA(text="Name and Describe New Application", context="Step 1 of 3") }} + {{ StickyCTA(text=('portfolios.applications.new.step_1_header' | translate | safe), context="Step 1 of 3") }} {% endblock %} {% block application_content %} @@ -23,31 +23,32 @@
-
{{ form.csrf_token }} -

- {{ "fragments.edit_application_form.explain" | translate }} -

{{ TextInput(form.name, optional=False) }} + {{ ('portfolios.applications.new.step_1_form_help_text.description' | translate | safe) }}
+
{{ TextInput(form.description, paragraph=True, optional=True) }} -
+ {{ ('portfolios.applications.new.step_1_form_help_text.description' | translate | safe) }}
- + - - {% block next_button %} - {{ SaveButton(text=('portfolios.applications.new.step_1_button_text' | translate)) }} - {% endblock %} - + + {% block next_button %} + {{ SaveButton(text=('portfolios.applications.new.step_1_button_text' | translate)) }} + {% endblock %} + + Cancel + +
diff --git a/translations.yaml b/translations.yaml index 886c866e..e90ea453 100644 --- a/translations.yaml +++ b/translations.yaml @@ -309,8 +309,33 @@ portfolios: add_another_environment: Add another environment app_settings_text: App settings new: - step_1_header: "Name and Describe New Application" + step_1_header: Name and Describe New Project step_1_button_text: "Save and Add Environments" + step_1_form_help_text: + name: | +
+

+ The name of your project should be intuitive and easily recognizable for all of your team members. +

+

+ Writer's Block? A naming example includes: +

+

+
+ description: | +
+

+ Add a brief one to two sentence description of your project. You should be able to reference your TO Description of Work. +

+

+ Writer's Block? A naming example includes: +

+

+
step_2_header: Add Environments to {application_name} step_2_button_text: "Save and Add Members" step_3_header: Invite Members to {application_name}