{% extends "admin/core/base.html" %} {% load static %} {% load foundation %} {% load i18n %} {% load field %} {% block title-section %}{% trans "Funding Information" %}{% endblock %} {% block breadcrumbs %} {{ block.super }}
  • Submit an Article
  • {% endblock %} {% block body %}
    {% include "admin/elements/forms/messages_in_callout.html" with form=funder_form %}

    {% trans "Funding" %}

    {% blocktrans %} Here you can search the FundRef database to add grant IDs to your article's metadata. If you can't find a specific funder, you can manually enter the details. You can also edit or delete entries as necessary. {% endblocktrans %}

    {% trans "Add Funding Source" %}

    {% trans 'Current Funders' %}

    {% for funder in article.funders.all %} {% empty %} {% endfor %}
    {% trans "Name" %} {% trans "FundRef ID" %} {% trans "Grant Number" %} {% trans "Funding Statement" %} {% trans "Edit" %} {% trans "Delete" %}
    {{ funder.name|default_if_none:"" }} {{ funder.fundref_id|default_if_none:"" }} {{ funder.funding_id|default_if_none:"" }} {{ funder.funding_statement|safe }} Edit Delete
    {% trans "No funders added." %}
    {% csrf_token %}
    {% trans 'Add funder' %}
    {% csrf_token %} {{ funder_form|foundation }}
    {% endblock body %} {% block js %} {{ block.super }} {% include "admin/elements/fundref/fundref.html" %} {% endblock %} {% block toastr %} {% comment %} Avoid showing the messages via Toastr since they should be included at the top of the form. {% endcomment %} {% endblock toastr %}