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

Duplicate person records found. This is an error. 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 }} {% else %} No photo available {% endif %} {{ person.biography | apply_markup:"restructuredtext" }}
{% if person.role_set.exists %}

Roles

{% if person.role_set.count %} {% for role in person.role_set.all %} {% if role.group.state_id == 'active' or role.group.state_id == 'bof' %} {% if role.group.acronym != 'secretariat' %} {% endif %} {% endif %} {% endfor %} {% else %} {{ person.first_name }} has no active roles as of {{ today }}. {% endif %}
{{ 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 %}

RFCs

{% if person.rfcs %} {% for doc in person.rfcs %} {% endfor %}
{{ doc.canonical_name }} {{ doc.pub_date|date:"b Y"|title|nbsp }} {{ doc.title }}
{% else %} {{ person.first_name }} has no RFCs as of {{ today }}. {% endif %}

Active Drafts

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

Expired Drafts exluding 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 %}