{% extends 'base.html' %} {% block content %}

Author List


These are all the authors that have publications in our database.Remember that the Literature and Author models both have custom querysets attached which allow us to easily get useful parameters like then ones shown in the table. Check out the documentation on Django Literature managers to view what else they can do.

{% for author in author_list %} {% endfor %}
Listed as...
Go To Given Family ORCID First Author Co-author
View {{ author.given }} {{ author.family }} {{ author.ORCID|default_if_none:"" }} {{ author.as_lead }} {{ author.as_supporting }}
{% endblock content %}