Skip to content

Commit

Permalink
verify 'identifier' is not None
Browse files Browse the repository at this point in the history
  • Loading branch information
kzdev420 committed Nov 5, 2024
1 parent d5773f0 commit b68469e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<div class="bold pt-2">Retrieved Date and Time:</div>
</td>
<td>
{% if business.identifier.startswith('T') %}
{% if not business.identifier or business.identifier.startswith('T') %}
<div>Pending</div>
{% else %}
<div>{{business.identifier}}</div>
Expand Down Expand Up @@ -118,7 +118,7 @@
<div class="bold pt-2">Retrieved Date and Time:</div>
</td>
<td>
{% if business.identifier.startswith('T') %}
{% if not business.identifier or business.identifier.startswith('T') %}
<div>Pending</div>
{% else %}
<div>{{business.identifier}}</div>
Expand All @@ -135,7 +135,7 @@
<div class="bold pt-2">Retrieved Date and Time:</div>
</td>
<td>
{% if business.identifier.startswith('T') %}
{% if not business.identifier or business.identifier.startswith('T') %}
<div>Pending</div>
{% else %}
<div>{{business.identifier}}</div>
Expand Down

0 comments on commit b68469e

Please sign in to comment.