{% with messages = get_flashed_messages() %} {% if messages %}
{{ messages[0] }}
{% endif %} {% endwith %}

Extracted Details From Image

{% if data %}

Extracted Information

Extracted Data:
{% if data.extracted_text.items() %}
    {% for filename, text in data.extracted_text.items() %}
  • {{ filename }}:
  • Processed Image Text:

    {{ text }}

    {% endfor %}
{% else %}

No tools found

{% endif %}
Name:
{% if data.name is iterable and data.name is not string %}
    {% for value in data.name %}
  • {{ value }}
  • {% endfor %}
{% else %}

No tools found

{% endif %}
Designation:
{% if data.Designation is iterable and data.Designation is not string %}
    {% for value in data.Designation %}
  • {{ value }}
  • {% endfor %}
{% else %}

No tools found

{% endif %}
Contact number:
{% if data.contact_number is iterable and data.contact_number is not string %}
    {% for value in data.contact_number %}
  • {{ value }}
  • {% endfor %}
{% else %}

No tools found

{% endif %}
Email:
{% if data.email is iterable and data.email is not string %}
    {% for value in data.email %}
  • {{ value }}
  • {% endfor %}
{% else %}

No tools found

{% endif %}
Location:
{% if data.Location is iterable and data.Location is not string %}
    {% for value in data.Location %}
  • {{ value }}
  • {% endfor %}
{% else %}

No tools found

{% endif %}
Link:
{% if data.Link is iterable and data.Link is not string %}
    {% for value in data.Link %}
  • {{ value }}
  • {% endfor %}
{% else %}

No tools found

{% endif %}
Organisation:
{% if data.Company is iterable and data.Company is not string %}
    {% for value in data.Company %}
  • {{ value }}
  • {% endfor %}
{% else %}

No tools found

{% endif %}
{% else %}

No data available. Please process a file.

{% endif %}