{% extends "base.html" %} {% block title %}Lawyers - Vera Medical CRM{% endblock %} {% block content %}

Lawyers

Law firms and attorneys representing claimants

{% if search %} Reset {% endif %}
Add Lawyer
{% if lawyers %} {% for lawyer in lawyers %}

{{ lawyer['first_name'] }} {{ lawyer['last_name'] }}

{% if lawyer['title'] %}

{{ lawyer['title'] }}

{% endif %} {% if lawyer['status'] %}

{{ lawyer['status'] }}

{% endif %}
{% if lawyer['firm_name'] %}

{{ lawyer['firm_name'] }}

{% endif %} {% if lawyer['firm_city'] %}

{{ lawyer['firm_city'] }}

{% endif %} {% if lawyer['firm_phone'] %}

{{ lawyer['firm_phone']|format_phone }}

{% endif %} {% if lawyer['direct_number'] %}

{{ lawyer['direct_number'] }}{% if lawyer['ext'] %} ext. {{ lawyer['ext'] }}{% endif %}

{% endif %}

{{ lawyer['case_count'] or 0 }} case(s)

Edit
{% endfor %} {% else %}

No lawyers found

{% endif %}
{% endblock %}