Extracted Data:
{% if data.extracted_text.items() %}
{% for filename, text in data.extracted_text.items() %}
- {{ filename }}:
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 %}