{% extends "base.html" %} {# Copyright The IETF Trust 2015, All Rights Reserved #} {% load origin %} {% load markup_tags %} {% load static %} {% load ietf_filters %} {% load group_filters %} {% block title %}Profile for {{ persons.0 }}{% endblock %} {% block content %} {% origin %} {% if persons|length > 1 %}

More than one person with this name has been found. Showing all:


{% endif %} {% for person in persons %}
{% if not forloop.first %}
{% endif %}

{{ person.name }} {% if person.ascii != person.name %}
({{person.ascii}}){% endif %}

{% if person.photo %} Photo of {{ person }} {% endif %} {{ person.biography | apply_markup:"restructuredtext" }}
{% if person.role_set.exists %}

Roles

{% for role in person.role_set.all|active_roles %} {% empty %} {{ person.first_name }} has no active roles as of {{ today }}. {% endfor %}
{{ role.name.name }} {% if role.group.type_id == 'sdo' %}for{% elif role.name_id == 'reviewer' %}in{% else %}of{% endif %} {{ role.group.name }} ({{ role.group.acronym }}) {{ role.email.address }}
{% endif %} {% if person.personextresource_set.exists %}

External Resources

{% for extres in person.personextresource_set.all %} {% endfor %}
{% firstof extres.display_name extres.name.name %} {{extres.value}}
{% endif %}

RFCs ({{person.rfcs|length}})

{% if person.rfcs %} {% for doc in person.rfcs %} {% endfor %}
{{ doc.canonical_name }} {{ doc.pub_date|date:"b Y"|title|nbsp }} {{ doc.title }}
{% with doc.referenced_by_rfcs.count as refbycount %} {% if refbycount %} Cited by {{ refbycount }} RFC{{ refbycount|pluralize}} {% endif %} {% endwith %}
{% else %} {{ person.first_name }} has no RFCs as of {{ today }}. {% endif %}

Active Drafts ({{person.active_drafts|length}})

{% if person.active_drafts.exists %} {% else %} {{ person.first_name }} has no active drafts as of {{ today }}. {% endif %}

Expired Drafts excluding replaced drafts

{% if person.expired_drafts.exists %} {% else %} {{ person.first_name }} has no expired drafts as of {{ today }}. {% endif %}
{% if person.has_drafts %}
{% endif %} {% endfor %} {% endblock %} {% block js %} {% if persons|length == 1 %} {% endif %} {% endblock %}