{% extends "resumes/base-wide.html" %} {% load base_filters %} {% load base_tags %} {% load bootstrap_pagination_tags %} {% load perm_tags %} {% load resume_tags %} {% load search_tags %} {% block title %}{% spaceless %} {% if MODULE_RESUMES_LABEL_PLURAL %}{% blocktrans with label_plural=MODULE_RESUMES_LABEL_PLURAL %}{{ label_plural }} Search{% endblocktrans %} {% else %}{% trans "Resumes Search" %}{% endif %} - {{ block.super }} {% endspaceless %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content_classes %}{{ block.super }} t-search-view{% endblock %} {% block content %}

{% firstof trans SITE_GLOBAL_SITEPRIMARYKEYWORDS trans SITE_GLOBAL_SITEDISPLAYNAME %} {% if MODULE_RESUMES_LABEL_PLURAL %} {% blocktrans with label_plural=MODULE_RESUMES_LABEL_PLURAL %}{{ label_plural }} Search{% endblocktrans %} {% else %} {% trans "Resumes Search" %} {% endif %}

{% resume_search %} {% autopaginate resumes num_items %}

{% if MODULE_RESUMES_LABEL_PLURAL %} {% blocktrans with label_plural=MODULE_RESUMES_LABEL_PLURAL count=paginator.count %} {{ count }} {{ label_plural }} Found {% endblocktrans %} {% else %} {% blocktrans with count=paginator.count %} {{ count }} Resumes Found {% endblocktrans %} {% endif %}

{% if is_grid_view %} {% if resumes %} {% for resume in resumes %} {% with is_linkedin_url=resume.is_linkedin_url %} {% endwith %} {% endfor %}
{% trans "Title" %} {% trans "First Name" %} {% trans "Last Name" %} {% trans "Email" %} {% trans "Resume URL" %} {% trans "Resume File" %} {% trans "Location" %} {% trans "Industry" %}
{{ resume.title }} {{ resume.first_name }} {{ resume.last_name }} {{ resume.contact_email }} {% if resume.resume_url %} {% if is_linkedin_url %} {% if resume.first_name %} {% blocktrans with first_name=resume.first_name %} View {{ first_name }}'s LinkedIn {% endblocktrans %} {% else %} {% trans "View LinkedIn" %} {% endif %} {% else %} {% trans "View Website" %} {% endif %} {% endif %} {% if resume.resume_file %} {% if resume.first_name %} {% blocktrans with first_name=resume.first_name %} Download {{ first_name }}'s resume {% endblocktrans %} {% else %} {% trans "Download this resume" %} {% endif %} {% endif %} {{ resume.location }} {% if resume.industry %} {{ resume.industry }}{% endif %}
{% endif %} {% else %}
{% for resume in resumes %} {% search_result resume %} {% empty %} {% endfor %}
{% endif %} {% paginate %} {% endblock %}