{% extends 'scipost/_personal_page_base.html' %} {% load bootstrap %} {% load add_get_parameters %} {% block breadcrumb_items %} {{ block.super }} Profiles {% endblock %} {% load scipost_extras %} {% block pagetitle %}: Profiles{% endblock pagetitle %} {% block content %}

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?
{% include 'profiles/_profile_card.html' with profile=profile %}
No Profiles found
{% if is_paginated %}
{% include 'partials/pagination.html' with page_obj=page_obj %}
{% endif %}
{% endblock content %}