{% extends base %} {% block head_extra %} {% endblock %} {% block content %} {% import "macros/action_icons_static.html" as icons with context %}

{% block title %}Landing page{% endblock %}

Filtering/Searching options

{{ filter_form.csrf_token }} {{ filter_form.hid_page }}
{{ filter_form.sel_role_department.label }} {{ filter_form.sel_role_department(style="width: 100%; padding: 6px;") }} {{ filter_form.sel_role.label(style="margin-top: 10px;") }} {{ filter_form.sel_role(style="width: 100%; padding: 6px;") }}
{{ filter_form.txt_name.label }} {{ filter_form.txt_name(style="width: 100%; padding: 6px;") }}
{{ filter_form.txt_surname.label }} {{ filter_form.txt_surname(style="width: 100%; padding: 6px;") }}
{{ filter_form.txt_id_number.label }} {{ filter_form.txt_id_number(style="width: 100%; padding: 6px;") }}
{{ filter_form.sel_language.label }} {{ filter_form.sel_language(style="width: 100%; padding: 6px;") }}
{{ filter_form.sel_sap_k_level.label }} {{ filter_form.sel_sap_k_level(style="width: 100%; padding: 6px;") }}
{{ filter_form.sel_qualification_type_1.label }} {{ filter_form.sel_qualification_type_1(style="width: 100%; padding: 6px;") }} {{ filter_form.sel_qualification_1.label }} {{ filter_form.sel_qualification_1(style="width: 100%; padding: 6px;") }}
{{ filter_form.sel_qualification_type_2.label }} {{ filter_form.sel_qualification_type_2(style="width: 100%; padding: 6px;") }} {{ filter_form.sel_qualification_2.label }} {{ filter_form.sel_qualification_2(style="width: 100%; padding: 6px;") }}
{% if records %}

Records

{% for record in records %} {% endfor %}{# end of looping through records #}
SurnameFirst nameYears experienceContact numberE-mailQualifications[actions]
{{ record.v_surname }}{{ record.v_name_1 }}{{ record.si_years_experience }}{{ record.v_contact_number }}{{ record.v_email }} {% if record.record_qualifications %}
    {% for qualification in record.record_qualifications %}
  • {{ qualification.v_qualification_type }} - {{ qualification.v_qualification_name}} - {{ qualification.d_acquired|date_format }}
  • {% endfor %}{# end of looping through qualifications #}
{% else %}   {% endif %}{# end of checking if there are qualifications per record #}
Paging...
{# {% if paging.has_prev %} {% endif %} #} {% for number in paging.iter_pages() %} {% if paging.page != number %} {{ number }}   {% else %} {{ number }}   {% endif %} {% endfor %} {# {% if paging.has_next %} {{ ">>" }} {% endif %} #}
{% endif %}{# end of checking if records existed #}
{% from "macros/dialog.html" import dlg_prep with context %} {{ dlg_prep(["dlg_details"]) }} {# dlg divs below #}
Record details
(view full-screen)

Details

Languages

    Qualifications

      Uploads

      Prior Tenders

      {% endblock %}