{% extends "base.html" %} {% set active_page = "authors" %} {% block title %}{{ author.name }} — IETF Draft Analyzer{% endblock %} {% block content %}
Back to Authors
{{ author.name[0]|upper if author.name else '?' }}

{{ author.name }}

{% if author.affiliation %}

{{ author.affiliation }}

{% endif %}
{{ author.drafts|length }} draft{{ 's' if author.drafts|length != 1 }} {{ author.coauthors|length }} co-author{{ 's' if author.coauthors|length != 1 }}

Co-Authors ({{ author.coauthors|length }})

    {% for ca in author.coauthors %}
  • {{ ca.name[0]|upper if ca.name else '?' }}
    {{ ca.name }} {% if ca.affiliation %}
    {{ ca.affiliation }}
    {% endif %}
    {{ ca.shared_drafts }} shared draft{{ 's' if ca.shared_drafts != 1 }}
  • {% endfor %} {% if not author.coauthors %}

    No co-authors found.

    {% endif %}
{% endblock %}