Skip to content

Commit

Permalink
task/WP-205: Add message for submitting >5 entities (#208)
Browse files Browse the repository at this point in the history
* Add message to bottom of final entity

* Fixed message styling to conform to type of message
  • Loading branch information
edmondsgarrett authored Aug 30, 2023
1 parent f836a69 commit 8d1723f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,12 @@ <h6>
<div id="help-text-total_claims_value_${entities}" class="help-text">
</div>
</div>
${ entities === 5 ?
{% if not r %}
`<p class="c-message c-message--type-info c-message--scope-inline">If you need to associate more than 5 entities with your registration, <a href="/workbench/dashboard" target="_blank">submit a ticket</a> with your additional entries and your registration ID (displayed after submitting this form).</p>`
{% endif %}
: ''
}
`;
entityIdGroupValidation(entities, reg_id); // add entity input validation for new entities on form
entityPlanTypeValidation(entities, reg_id);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

<div class="container">
{% include "nav_cms_breadcrumbs.html" %}
{% include 'snippets/tup-175-css-alerts-messages-ui-pattern.html' %}



Expand Down

0 comments on commit 8d1723f

Please sign in to comment.