{% 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 %}
{% 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 %} |