Skip to content

Commit

Permalink
fix the busines verify
Browse files Browse the repository at this point in the history
  • Loading branch information
kzdev420 committed Nov 5, 2024
1 parent b68469e commit 7d111ab
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 not business.identifier or business.identifier.startswith('T') %}
{% if not business 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 not business.identifier or business.identifier.startswith('T') %}
{% if not business 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 not business.identifier or business.identifier.startswith('T') %}
{% if not business or business.identifier.startswith('T') %}
<div>Pending</div>
{% else %}
<div>{{business.identifier}}</div>
Expand Down

0 comments on commit 7d111ab

Please sign in to comment.