{% extends 'admin/master.html' %} {% load static %} {% block content %}

Hi, welcome back!

Insurances List

Insurances List

{% for insurance in insurances %} {% empty %} {% endfor %}
ID Insurance Name Insurance Logo Insurance Link Status Action
{{ insurance.id }} {{ insurance.insurance_name }} {% if insurance.insurance_logo %} Insurance Logo {% else %} Insurance Logo {% endif %} {{ insurance.insurance_link|truncatechars:70 }} {% if insurance.status == 1 %} Active {% else %} Inactive {% endif %}
No insurances found.
{% endblock content %}