updated with org model flag

This commit is contained in:
asaki222 2024-10-24 13:39:33 -04:00
parent 0952c9d216
commit 337e6e5705
No known key found for this signature in database
GPG key ID: 2C4F802060E06EA4
2 changed files with 18 additions and 3 deletions

View file

@ -6,7 +6,11 @@
<ul class="usa-list">
<li>Be available </li>
<li>Relate to your organizations name, location, and/or services </li>
{% if has_organization_feature_flag %}
<li>Be clear to the general public. Your domain name must not be easily confused with other organizations.</li>
{% else %}
<li>Be unlikely to mislead or confuse the general public (even if your domain is only intended for a specific audience) </li>
{% end %}
</ul>
</p>
@ -19,6 +23,12 @@
<p>Note that <strong>only federal agencies can request generic terms</strong> like
vote.gov.</p>
{% if not has_organization_feature_flag%}
<h2 class="margin-top-3">Domain examples for your type of organization</h2>
<div class="domain_example">
{% include "includes/domain_example.html" %}
</div>
{% endif %}
{% endblock %}

View file

@ -7,15 +7,20 @@
{% block form_fields %}
<fieldset class="usa-fieldset margin-top-2">
<legend>
<p><em>Required fields are marked with an asterisk <abbr class="usa-hint usa-hint--required" title="required">(*)</abbr>.</em></p>
<fieldset class="usa-fieldset margin-top-2">
{% if has_organization_feature_flag %}
<p><em>Required fields are marked with an asterisk <abbr class="usa-hint usa-hint--required" title="required">(*)</abbr>.</em></p>
{% endif %}
<h2>Is there anything else youd like us to know about your domain request?</h2>
</legend>
</fieldset>
<div class="margin-top-3" id="anything-else">
{% if has_organization_feature_flag %}
<p><em>Provide details below. <abbr class="usa-hint usa-hint--required" title="required">*</abbr></em></p>
{% else %}
<p>Provide details below. <abbr class="usa-hint usa-hint--required" title="required">*</abbr></p>
{% end %}
{% with attr_maxlength=2000 add_label_class="usa-sr-only" %}
{% input_with_errors forms.0.anything_else %}
{% endwith %}