Skip to content

Commit

Permalink
Small tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
seeker25 committed Aug 27, 2024
1 parent ec5ec1d commit b88b4d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions report-api/report-templates/eft/eft_statement_details.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
{% if statement.is_interim_statement%}
<div><span class="font-bold">Payment Received Date:</span>
{% if statementSummary.latestStatementPaymentDate %}
{{statementSummary.latestStatementPaymentDate | format_datetime('mmm dd,yyyy')}} at 5:15 PM Pacific Time
{{statementSummary.latestStatementPaymentDate | format_datetime('mmm dd,yyyy')}}
{% endif %}
</div>
{% else %}
<div><span class="font-bold">Payment Due Date:</span> {{statementSummary.dueDate | format_datetime('mmm dd,yyyy')}} at 5:15 PM Pacific Time</div>
<div><span class="font-bold">Payment Due Date:</span> {{statementSummary.dueDate | format_datetime('mmm dd,yyyy')}}</div>
{% endif %}

<div><span class="font-bold">Statement Number:</span> {{statement.id}}</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ <h2>Totals</h2>
<span class="total">${{ "{:,.2f}".format(total.due) if total.due else '0.00' }}</span>
</div>
{% if not statement.is_interim_statement %}
<div class="font-14">Payment Due Date: {{ statementSummary.dueDate | format_datetime('mmm dd,yyyy') }} at 5:15 pm Pacific Time</div>
<div class="font-14">Payment Due Date: {{ statementSummary.dueDate | format_datetime('mmm dd,yyyy') }}</div>
{% endif %}
</td>
</tr>
Expand Down

0 comments on commit b88b4d8

Please sign in to comment.