{% load bibmate_extras %} {% load url from future %} {% if authors or years or titles %}
{% if authors %} {% if authors|length > 1 %}
Authors:
{% else %}
Author:
{% endif %} {% for author in authors %}"{{ author }}" {% endfor %} {% endif %}
{% if years %} {% if years|length > 1 %}
Years:
{% else %}
Year:
{% endif %} {% for year in years %}{{ year }} {% endfor %} {% endif %}
{% if titles %} {% if titles|length > 1 %}
Titles:
{% else %}
Title:
{% endif %} {% for title in titles %}"{{ title }}" {% endfor %} {% endif %}
{% endif %}