{% extends 'base.html' %} {% block content %}

Search Visitor Data

{% if visitor %}

Search results for: "{{ query }}"

{% for i in visitor %} {% if i.status == '0' %} {% else %} {% endif %} {% endfor %}
S.No Full Name Contact Number Email Entery Date and Time Status Action
{{ i.id}} {{ i.fullname}} {{ i.mobilenumber}} {{ i.email}} {{ i.created_at}}Visitor In{{ i.status}}Update Delete
{% else %} {% if query %}

No records found for: "{{ query }}"

{% endif %} {% endif %}
{% endblock %}