{% extends 'organizations/base.html' %} {% load bootstrap %} {% block pagetitle %}: organizations dashboard{% endblock pagetitle %} {% block headsup %} {% endblock headsup %} {% block content %}

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

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.all|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.all %} {% endfor %}
    Type Amount Date
    {{ subsidy.get_subsidy_type_display }} €{{ subsidy.amount }} {{ subsidy.date }}{% 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 %}

Sponsors Board

The Sponsors Board is composed of all registered Organization Contacts.

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 }}
  • {% empty %}
  • No Organization found
  • {% endfor %}
{% if contact.user.is_active %}{% else %}{% endif %}
No contact found
{% endblock content %}