{% extends 'scipost/base.html' %}
{% block pagetitle %}: Funders{% endblock pagetitle %}
{% load bootstrap %}
{% block content %}
Funders (and associated grants)
Find a new funder in the Fundref registry
Funders in the SciPost database
Name |
Acronym |
Identifier |
{% for funder in funders %}
{{ funder.name }} |
{{ funder.acronym }} |
{{ funder.identifier }} |
{% empty %}
No funders found |
{% endfor %}
Add a grant
Grants in the SciPost database
Funder Name |
Recipient |
Number |
{% for grant in grants %}
{{ grant.funder.name }} |
{% if grant.recipient %}
{{ grant.recipient }} |
{% elif grant.recipient_name %}
{{ grant.recipient_name }} |
{% else %}
|
{% endif %}
{{ grant.number }} |
{% empty %}
No grants found |
{% endfor %}
{% endblock content %}