Skip to content

Commit

Permalink
DTSPB-4259: Fix template formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiealbertelli committed Nov 29, 2024
1 parent b43d944 commit 7b3d4f0
Showing 1 changed file with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -226,15 +226,6 @@
{% endif %}

{% endfor %}
<p>{% if case_details.case_data.titleAndClearingType == "TCTPartAllRenouncing" %}
{% if multipleExecutors %}We are the executors named in the will.{% else %}I am the executor named in the will.{% endif %}
The profit-sharing {{ case_details.case_data.pluralProfitSharingTextForLegalStatement }} in the firm {{ case_details.case_data.nameOfFirmNamedInWill }}
at the date of death of the deceased have renounced probate.{% elseif case_details.case_data.titleAndClearingType == "TCTPartSuccAllRenouncing" %}
{% if multipleExecutors %}We are the executors named in the will.{% else %}I am the executor named in the will.{% endif %}
The profit-sharing {{ case_details.case_data.pluralProfitSharingTextForLegalStatement }} in the firm {{ case_details.case_data.nameOfSucceededFirm }}
that had succeeded to and carried on the practice of the firm {{ case_details.case_data.nameOfFirmNamedInWill }}
at the date of death of the deceased have renounced probate.{% endif %}</p>

{% if case_details.case_data.titleAndClearingType == "TCTSolePrinSucc" or case_details.case_data.titleAndClearingType == "TCTSolePrin" %}
<p>The executor{% if multipleOtherPartners > 1%}s{% endif %} {% if case_details.case_data.solsSolicitorIsExec == "No" and case_details.case_data.solsSolicitorIsApplying == "Yes" %}
{{ case_details.case_data.solsSOTForenames }} {{ case_details.case_data.solsSOTSurname }},{% endif %}
Expand All @@ -257,6 +248,14 @@
<tr>
<td colspan="2">
{% if case_details.case_data.executorsNotApplyingLegalStatement|length>0 %}
<p>{% if case_details.case_data.titleAndClearingType == "TCTPartAllRenouncing" %}
{% if multipleExecutors %}We are the executors named in the will.{% else %}I am the executor named in the will.{% endif %}
The profit-sharing {{ case_details.case_data.pluralProfitSharingTextForLegalStatement }} in the firm {{ case_details.case_data.nameOfFirmNamedInWill }}
at the date of death of the deceased have renounced probate.{% elseif case_details.case_data.titleAndClearingType == "TCTPartSuccAllRenouncing" %}
{% if multipleExecutors %}We are the executors named in the will.{% else %}I am the executor named in the will.{% endif %}
The profit-sharing {{ case_details.case_data.pluralProfitSharingTextForLegalStatement }} in the firm {{ case_details.case_data.nameOfSucceededFirm }}
that had succeeded to and carried on the practice of the firm {{ case_details.case_data.nameOfFirmNamedInWill }}
at the date of death of the deceased have renounced probate.{% endif %}</p>
{% for executor in case_details.case_data.executorsNotApplyingLegalStatement %}
{% if executor.value.notApplyingExecutorDispenseWithNotice == "Yes" %}
{% if executor.value.notApplyingExecutorDispenseWithNoticeLeaveGiven == "Yes" %}
Expand Down

0 comments on commit 7b3d4f0

Please sign in to comment.