{% extends 'events/display/conference/base.html' %} {% macro details_table_row(caption, value) %} {% if value %}
{{ value }}
{% endif %} {% endmacro %} {% block title -%} {% trans full_name=author.full_name -%} Details for {{ full_name }} {%- endtrans %} {%- endblock %} {% block content %}
{# i18n: Salutation, e.g., 'Mr.' or 'Mrs.' #} {{ details_table_row(pgettext('Salutation', 'Title:'), author.title) if author.contribution.event.show_titles }} {{ details_table_row(_('Affiliation:'), author.affiliation) }}
{% if contribs -%}

{%- trans count=contribs|length -%} Author in the following contribution {%- pluralize -%} Author in the following contributions {%- endtrans -%}

{%- endif %} {% endblock %}