{% 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 meta_description %} {{ block.super }} Profiles List {% endblock meta_description %} {% block pagetitle %} : Profiles {% endblock pagetitle %} {% block content %} {% is_ed_admin request.user as is_ed_admin %} {% is_scipost_admin request.user as is_scipost_admin %}

Profiles-related Actions:

{% regroup academic_fields by branch as branches %} {% for branch, academic_fields_in_branch in branches %} {% endfor %}

Branch

Fields

{{ branch.name }}
    {% for acad_field in academic_fields_in_branch %}
  • {% if acad_field.nr_profiles > 0 %} {% else %} {% endif %}
  • {% endfor %}

Specialize the list by selecting from the table above, or:

Profiles {% if request.GET.text %}with last name starting with {{ request.GET.text }}{% endif %} {% if request.GET.field %} in {{ request.GET.field }} {% if request.GET.specialty %}, {{ request.GET.specialty }}{% 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 Academic field Specialties Contributor?
{{ profile }} {{ profile.acad_field }} {% for specialty in profile.specialties.all %}
{{ specialty.code }}
{% endfor %}
{% if profile.has_active_contributor %} {% include 'bi/check-circle-fill.html' %} {% else %} {% include 'bi/x-circle-fill.html' %} {% endif %}
No Profiles found
{% if is_paginated %}
{% include '_pagination.html' with page_obj=page_obj %}
{% endif %}
{% endblock content %} {% block footer_script %} {% endblock footer_script %}