{% load bootstrap %} {% load organizations_extras %}
{% if perms.scipost.can_manage_organizations %}

Details:

{% include 'organizations/_organization_details_contents.html' with org=org %}
{% endif %}

Publications associated to this Organization (with total PubFractions ):

{% for pubyear in pubyears %}

{{ pubyear }} (total pubfractions: {{ org|pubfractions_in_year:pubyear }})

    {% for publication in org.get_publications %} {% if publication.publication_date|date:'Y'|add:"0" == pubyear %}
  • {{ publication.title }}
    by {{ publication.author_list }},
    {{ publication.citation }}
  • {% endif %} {% endfor %}
{% endfor %}

Associated Authors:

Registered Contributors:

    {% for author in org.get_contributor_authors %}
  • {{ author }}
  • {% empty %}
  • No Contributors found
  • {% endfor %}

Unregistered:

    {% for author in org.get_unregistered_authors %}
  • {{ author }}
  • {% empty %}
  • No unregistered author found
  • {% endfor %}

Funder instances (from FundRef) associated to this Organization:

    {% for funder in org.funder_set.all %}
  • {{ funder }}
  • {% empty %}
  • No FundRef instance found
  • {% endfor %}

Partnership history:

{% with agreement=org.partner.get_latest_active_agreement %} {% if agreement %}

This organization is currently a SciPost Supporting Partner.

{% endif %} {% endwith %} {% if org.partner.agreements %} {% for agreement in org.partner.agreements.all %} {% endfor %}
Status Duration Start date Contribution/year
{{ agreement.get_status_display }} {{ agreement.get_duration_display }} {{ agreement.start_date }} € {{ agreement.offered_yearly_contribution }}
Total contribution obtained:€ {{ org.get_total_contribution_obtained }}
{% else %}

This organization has not yet been a SciPost Supporting Partner.

{% endif %}
{% if perms.scipost.can_manage_organizations %}

Manage this organization:


{% endif %}