{% extends "base_template.html" %} {% block title %}{{ _('Careers') }}{% endblock %} {% block content %}
{# Flash messages #} {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %} {% for a in applications %} {% else %} {% endfor %}
{{ _('Candidate') }} {{ _('CV') }} {{ _('Candidate list') }} {{ _('Date') }} {{ _('Status') }} {{ _('Actions') }}
{{ a.full_name }}
{{ a.email }} {% if a.degree or a.university %}
{{ [a.degree, a.university] | select | join(', ') }} {% endif %}
{% if a.cv_filename %} {{ _('Download') }} {% else %} {{ _('none') }} {% endif %} {% if a.talent_pool %} {{ _('yes') }} {% else %} {{ _('no') }} {% endif %} {{ a.created_at.strftime('%Y-%m-%d %H:%M') }} {% if a.read %} {{ _('read') }} {% else %} {{ _('unread') }} {% endif %} {% if not a.read %}
{% endif %}
{{ _('No applications yet.') }}
{% endblock %}