{% extends 'organizations/base.html' %} {% load bootstrap %} {% load static %} {% block pagetitle %}: organizations dashboard{% endblock pagetitle %} {% block content %}
{% if request.user.org_contact %}

Welcome to your Organizations dashboard, {{ request.user.org_contact.get_title_display }} {{ request.user.last_name }}

{% elif perms.scipost.can_manage_organizations %}

Organizations dashboard

{% endif %}

Your account

{{ request.user.org_contact }}

Update your personal data or password

Your Organizations-related roles

Click on an Organization's name to see its details.

{% for role in own_roles %} {% empty %} {% endfor %}
Organization Role kind Date from Date until Actions
{{ role.organization }} {{ role.get_kind_display }} {{ role.date_from|date:"Y-m-d" }} {{ role.date_until|date:"Y-m-d" }} Update
No role has been defined

Subsidies from your Organizations

    {% for role in request.user.org_contact.roles.all %}
  • {{ role.organization }}

    {% if role.organization.subsidy_set.obtained|length > 0 %}

    List of the subsidies (in one form or another) which SciPost has received from this Organization. Click on a row to see more details.

    {% for subsidy in role.organization.subsidy_set.obtained %} {% endfor %}
    Type Amount Date
    {{ subsidy.get_subsidy_type_display }} €{{ subsidy.amount }} {{ subsidy.date_from }}{% if subsidy.date_until %} until {{ subsidy.date_until }}{% endif %}
    Total support obtained: €{{ role.organization.get_total_subsidies_obtained }}
    {% else %}

    This Organization has not yet supported SciPost.

    {% endif %}
  • {% empty %}
  • No Organization found
  • {% endfor %}

Registered Contacts

This tab lists all registered Organization Contacts. It is only visible to Contacts themselves (besides SciPost administration).

Do you know people who you think should appear on this list? Help us by checking if they are already on our list of Contact Persons, and if not, please add them!

Active Contacts

{% if perms.scipost.can_manage_organizations %} {% endif %} {% for contact in contacts %} {% if perms.scipost.can_manage_organizations %} {% endif %} {% empty %} {% endfor %}
Name Organization(s) / role(s)Account
active?
{{ contact }}
    {% for role in contact.roles.all %}
  • {{ role.organization }} / {{ role.get_kind_display }} {% if role.organization.parent %}

    Parent: {{ role.organization.parent }}

    {% endif %} {% if role.organization.children.all %}

    Parent of: {% for child in role.organization.children.all %} {{ child }}{% if not forloop.last %}, {% endif %} {% endfor %}

    {% endif %} {% if role.organization.superseded_by %}

    Superseded by {{ role.organization.superseded_by }}

    {% endif %}
  • {% empty %}
  • No Organization found
  • {% endfor %}
{% if contact.user.is_active %}{% include 'bi/check-circle-fill.html' %}{% else %}{% include 'bi/x-circle-fill.html' %}{% endif %}
No contact found
{% endblock content %} {% block footer_script %} {% endblock footer_script %}