{% extends 'funders/base.html' %} {% block pagetitle %}: Funders dashboard{% endblock pagetitle %} {% block breadcrumb_items %} {{ block.super }} Dashboard {% endblock %} {% load bootstrap %} {% block content %}

Funders (and associated grants)

Funders

Find a new funder in the Fundref registry

{% csrf_token %} {{form|bootstrap}}

Funders in the SciPost database

{% for funder in funders %} {% empty %} {% endfor %}
Name Acronym Identifier
{{ funder.name }} {{ funder.acronym }} {{ funder.identifier }} See all Publications for Funder
No funders found

Grants

Add a grant

{% csrf_token %} {{grant_form|bootstrap}}

Grants in the SciPost database

{% for grant in grants %} {% if grant.recipient %} {% elif grant.recipient_name %} {% else %} {% endif %} {% empty %} {% endfor %}
Funder Name Recipient Number
{{ grant.funder.name }}{{ grant.recipient }}{{ grant.recipient_name }}{{ grant.number }}
No grants found
{% endblock content %}