{% with messages = get_flashed_messages() %} {% if messages %}
{{ messages[0] }}
{% endif %} {% endwith %}
Extracted Details From Image
Reset & Upload New File
{% if data %}
Extracted Information
{% if data.extracted_text.items() %}
Extracted Image:
{% for filename, text in data.extracted_text.items() %}
{{ filename }}:
Extracted Text:
{{ text }}
{% endfor %}
{% endif %}
{% if data.name and data.name is iterable and data.name is not string %}
Name:
{% for value in data.name %} {% if value|lower != 'not found' %}
{{ value }}
{% endif %} {% endfor %}
{% endif %} {% if data.Designation and data.Designation is iterable and data.Designation is not string %}
Designation:
{% for value in data.Designation %} {% if value|lower != 'not found' %}
{{ value }}
{% endif %} {% endfor %}
{% endif %} {% if data.contact_number and data.contact_number is iterable and data.contact_number is not string %}
Contact number:
{% for value in data.contact_number %} {% if value|lower != 'not found' %}
{{ value }}
{% endif %} {% endfor %}
{% endif %} {% if data.email and data.email is iterable and data.email is not string %}
Email:
{% for value in data.email %} {% if value|lower != 'not found' %}
Email:
{% endif %} {% endfor %}
{% endif %} {% if data.Location and data.Location is iterable and data.Location is not string %}
Location:
{% for value in data.Location %} {% if value|lower != 'not found' %}
{{ value }}
{% endif %} {% endfor %}
{% endif %} {% if data.Link and data.Link is iterable and data.Link is not string %}
Link:
{% for value in data.Link %} {% if value|lower != 'not found' %}
{{ value }}
{% endif %} {% endfor %}
{% endif %} {% if data.Company and data.Company is iterable and data.Company is not string %}
Organisation:
{% for value in data.Company %} {% if value|lower != 'not found' %}
{{ value }}
{% endif %} {% endfor %}
{% endif %}
{% else %}
No data available. Please process a file.
{% endif %}