{% extends "admin/base_site.html" %} {% load i18n admin_urls %} {% block breadcrumbs %} {% endblock %} {% block content %} {% if credential_error %}
{{ credential_error }} {% if profile_url %} {% trans 'Manage Odoo credentials' %} {% endif %}
{% endif %} {% if error %}
{{ error }}
{% endif %} {% if debug_error %}
Debug details
{{ debug_error }}
{% endif %} {% if form_error %}
{{ form_error }}
{% endif %} {% if has_credentials %}
{% csrf_token %}
{{ search_form.name.errors }} {{ search_form.name }}
{{ search_form.email.errors }} {{ search_form.email }}
{{ search_form.phone.errors }} {{ search_form.phone }}
{{ search_form.limit.errors }} {{ search_form.limit }} {% if search_form.limit.help_text %}

{{ search_form.limit.help_text }}

{% endif %}
{% if searched %} {% if customers %} {% for customer in customers %} {% empty %} {% endfor %}
{% trans 'Select' %} {% trans 'Name' %} {% trans 'Email' %} {% trans 'Phone' %} {% trans 'Mobile' %} {% trans 'City' %} {% trans 'Country' %}
{{ customer.name }} {{ customer.email }} {{ customer.phone }} {{ customer.mobile }} {{ customer.city }} {{ customer.country }}
{% trans 'No customers matched your search.' %}
{% else %}

{% trans 'No customers matched your search.' %}

{% endif %} {% endif %}
{% endif %} {% endblock %}