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

Search Patients

{% csrf_token %}
{% if messages %} {% for message in messages %} {% if message.tags == 'error' %} {% endif %} {% endfor %} {% endif %} {% if messages %} {% for message in messages %} {% if message.tags == 'info' %} {% endif %} {% endfor %} {% endif %}
{% if searchpat %} {% for i in searchpat %} {% endfor %} {% else %} {% if query %}

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

{% endif %} {% endif %}
S.No Patient Name Patient Contact Number Patient Gender Creation Date Action
{{forloop.counter}} {{i.name}} {{i.mobilenumber}} {{i.gender}} {{i.regdate_at}} Edit View Details
{% endblock %}