{% extends 'layout/default.html' %} {% load i18n %} {% block title %}{% translate "List Technician " %}{% endblock %} {% block breadcumbheading %} {% translate "Manage Technicians" %} {% endblock %} {% block breadcumbfirst %} Manage Technicians {% endblock %} {% block breadcumbaddmore %} {% endblock %} {% block content %}

Technician List

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
Reset
{% if technician_lists %} {% for technician_list in technician_lists %} {% endfor %}
Id Name Email Phone Actions
{{forloop.counter}} {% if technician_list.userinfo.first_name and technician_list.userinfo.last_name %} {{technician_list.userinfo.first_name }} {{ technician_list.userinfo.last_name }} {% endif %} {{technician_list.email}} {{technician_list.userinfo.phone1}} Select
{% else %} No Record Found. {% endif %}
{% endblock content %}