{% 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:

{% for branch in branches %} {% endfor %}

Branch

Fields

{{ branch.name }}
    {% for acad_field in branch.academic_fields.all %}
  • {% if acad_field.profiles.all|length > 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 'partials/pagination.html' with page_obj=page_obj %}
{% endif %}
{% endblock content %} {% block footer_script %} {% endblock footer_script %}