{% extends 'layout/conference_page_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 %}
{{ details_table_row(_('Title:'), author.title) }} {{ 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 %}