Skip to content

Commit 35a44f6

Browse files
committed
SDK-495: Rename parse_documents macro to parse_document_images in Flask demo project
1 parent 102635f commit 35a44f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/yoti_example_flask/templates/profile.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% macro parse_documents(prop) %}
1+
{% macro parse_document_images(prop) %}
22
{% for image in prop.value %}
33
<img src="{image.value.base64_content() }" />
44
{% endfor %}
@@ -29,7 +29,7 @@
2929
<div class="yoti-attribute-value">
3030
<div class="yoti-attribute-value-text">
3131
{% if prop.name == "document_images" %}
32-
{{ parse_documents(prop) }}
32+
{{ parse_document_images(prop) }}
3333
{% elif prop.name == "structured_postal_address" %}
3434
{{ parse_structured_address(prop) }}
3535
{% else %}

0 commit comments

Comments
 (0)