Skip to content

Commit

Permalink
Merge pull request #833 from USEPA/IN-1768
Browse files Browse the repository at this point in the history
Update Redel Twig
  • Loading branch information
ryanletulle authored Jun 12, 2023
2 parents f30577e + e1a2e59 commit d01e443
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,30 +126,30 @@
{{ content.field_agency_delegation_link }}
{{ content.field_transmittal_notice }}
<ol>
{% if content.field_redelegation_authority is not empty %}
{% if content.field_redelegation_authority|render|trim is not empty %}
<li>{{ content.field_redelegation_authority }}</li>
{% endif %}
{% if content.field_to_whom_delegated is not empty %}
{% if content.field_to_whom_delegated|render|trim is not empty %}
<li>{{ content.field_to_whom_delegated }}</li>
{% endif %}
{% if content.field_limitation is not empty %}
{% if content.field_limitation|render|trim is not empty %}
<li>
{{ content.field_limitation }}
{{ content.field_limitations }}
</li>
{% endif %}
{% if content.field_further_redelegation is not 'May not be redelegated.' %}
{% if 'May not be redelegated.' in content.field_further_redelegation|render|render %}
<li>{{ content.field_further_redelegation }}</li>
{% else %}
<li>{{ content.field_further_redelegation }}
<ul>
<li>{{ content.field_redelegation_language }}</li>
<li>{{ content.field_re_redelegation_authority }}</li>
<li>{{ content.field_link_to_further_redelegati }}</li>
</ul>
</li>
{% else %}
<li>content.field_further_redelegation</li>
{% endif %}
{% if content.field_references is not empty %}
{% if content.field_references|render|trim is not empty %}
<li><div class="field__label">Authority Citations</div>
{% if content.field_references %}
{{ content.field_references }}
Expand All @@ -159,12 +159,12 @@
</li>
{% endif %}
</ol>
{% if content.field_related_resources is not empty %}
{% if content.field_related_resources|render|trim is not empty %}
<div class="field__label">Related Resources</div>
{{ content.field_related_resources }}

{% endif %}
{% if content.field_signed_memo is not empty %}
{% if content.field_signed_memo|render|trim is not empty %}
<div class="field__label">Signed Memo</div>
{{ content.field_signed_memo }}
{% endif %}
Expand Down

0 comments on commit d01e443

Please sign in to comment.