{% extends 'base.html' %} {% load i18n static humanize %} {% block title %} {{ _("Leads") |capfirst }} {% endblock title %} {% block content %} {% if page_obj.object_list or request.GET.q %}

{{ _("Leads") |capfirst }}
  • {% comment %} {% include "crm/leads/partials/update_action.html" %} {% endcomment %}
    {% if perms.inventory.add_lead %}
    {{ _("Add Lead") }}
    {% endif %}
    {% include 'partials/search_box.html' %}
    {% if page_obj.object_list or request.GET.q %}
    {% comment %} {% endcomment %} {% for lead in leads %} {% empty %} {% endfor %}
    {{ _("Lead Name") |capfirst }}
    {{ _("Car") |capfirst }}
    {{ _("email") |capfirst }}
    {{ _("Phone Number") }}
    {{ _("Next Action") |capfirst }}
    {{ _("Scheduled at") }}
    {{ _("Assigned To") |capfirst }}
    {{ _("Opportunity")|capfirst }}
    {{ _("Action") }}
    {{ lead.full_name|capfirst }}

    {% if lead.status == "new" %} {{ _("New") }} {% elif lead.status == "pending" %} {{ _("Pending") }} {% elif lead.status == "in_progress" %} {{ _("In Progress") }} {% elif lead.status == "qualified" %} {{ _("Qualified") }} {% elif lead.status == "contacted" %} {{ _("Contacted") }} {% elif lead.status == "canceled" %} {{ _("Canceled") }} {% endif %}
    {{ lead.id_car_make.get_local_name }} - {{ lead.id_car_model.get_local_name }} {{ lead.year }} {{ lead.email }} {{ lead.phone_number }} {{ lead.next_action|upper }} {{ lead.next_action_date|upper }}
    {% if lead.staff.logo %} Logo {% endif %}
    {% if lead.staff == request.staff %} {{ _("Me") }} {% elif LANGUAGE_CODE == "en" %} {{ lead.staff.fullname|capfirst }} {% else %} {{ lead.staff.arabic_name }} {% endif %}
    {% if user == lead.staff.user or request.is_dealer %}
    {% endif %}
    {% trans "No Leads found." %}
    {% if page_obj.paginator.num_pages > 1 %}
    {% include 'partials/pagination.html' %}
    {% endif %} {% endif %}
    {% else %} {% url 'lead_create' request.dealer.slug as create_lead_url %} {% include "empty-illustration-page.html" with value=empty_state_value url=create_lead_url %} {% endif %} {% endblock %}