Model

Extracted Details

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

    {{ filename }}:

    Processed Image Text:

    {{ text }}

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

    {{ data.name }}

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

    {{ data.Designation }}

    {% 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 %}

    {{ data.contact_number }}

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

    {{ data.email }}

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

    {{ data.Location }}

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

    {{ data.Link }}

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

    {{ data.Company }}

    {% endif %}
Back to Upload