{% extends 'profiles/base.html' %} {% load bootstrap %} {% load static %} {% load add_get_parameters %} {% load scipost_extras %} {% load user_groups %} {% block breadcrumb_items %} {{ block.super }} Profiles {% endblock %} {% block pagetitle %}: Profiles{% endblock pagetitle %} {% block content %} {% is_edcol_admin request.user as is_edcol_admin %} {% is_scipost_admin request.user as is_scipost_admin %}

Profiles-related Actions:

Specialize the list:

Profiles {% if request.GET.text %}with last name starting with {{ request.GET.text }}{% endif %} {% if request.GET.discipline %}in {{ request.GET.discipline }}{% if request.GET.expertise %}, {{ request.GET.expertise }}{% endif %}{% endif %} ({% if request.GET.contributor == "True" %}registered Contributors{% elif request.GET.contributor == "False" %}unregistered as Contributors{% else %}all registered/unregistered{% endif %}): {{ page_obj.paginator.count }} found


{% for profile in object_list %} {% empty %} {% endfor %}
Name Discipline Expertises Contributor?
{{ profile }} {{ profile.get_discipline_display }} {% for expertise in profile.expertises %}
{{expertise|get_specialization_code}}
{% endfor %}
{% if profile.has_active_contributor %}{% else %}{% endif %}
No Profiles found
{% if is_paginated %}
{% include 'partials/pagination.html' with page_obj=page_obj %}
{% endif %}
{% endblock content %} {% block footer_script %} {% endblock footer_script %}