{% extends "person/base.html" %}
{% load nm %}
{% load js %}
{% block head_resources %}
{{block.super}}
{% jsinclude "nm" %}
{% jsinclude "tables" %}
{% endblock %}
{% block head %}
{{block.super}}
{% endblock %}
{% block content %}
{{person.fullname}}
Account name | {{person.uid|default:"None chosen yet"}} |
OpenPGP fingerprint | {{person.fpr|fingerprint}}{% if "edit_ldap" in visit_perms %} (manage){% endif %} |
{% if "edit_email" in visit_perms %}
Contact email | {{person.email}} [edit] |
{% endif %}
Status | {{person.status|desc_status}} {% if person.status == STATUS_DC %}on nm.debian.org since{% else %}since{% endif %} {{person.status_changed|date:"Y-m-d"}}
{% if person.changed_before_data_import %}
(changed before data import)
{% endif %}
{% if "request_new_status" in visit_perms and person.possible_new_statuses %}(request new status){% endif %}
|
{% if person.pending %}
Pending | This is a new entry that requires confirmation before {{person.expires}}. Click here to send the email challenge again. |
{% endif %}
{% with am=person.am %}
{% if am %}
Application manager |
{% if am.is_am %}active,{% endif %}
{% if am.is_fd %}fd,{% endif %}
{% if am.is_dam %}dam,{% endif %}
{% if am.is_am_ctte %}am ctte,{% endif %}
{{person.am.processed.count}} applicants processed
{% if visitor.am == am or visitor.is_admin %}
[preferences]
{% endif %}
{% if visitor.is_admin %}
[admin]
{% endif %}
|
{% endif %}
{% endwith %}
{% if "edit_ldap" in visit_perms %}
edit LDAP information
{% endif %}
{% if person.is_am %}
{% if visitor.is_am or visitor.is_admin %}
edit AM
{% endif %}
{% endif %}
Short Biography
{% if person.bio %}
{{bio_html|safe}}
{{person.bio|truncatechars:128}}{% if person.bio|length > 128 %} (expand){% endif %}
{% else %}
(missing)
{% endif %}
{% if "edit_bio" in visit_perms %}
[edit]
{% endif %}
Personal history
{% include "process/process_list.html" with procs=processes2 proctable_archive=True %}
{% include "public/person_process_table.html" with p=p processes=processes only %}
{% if adv_processes %}
Advocate history
{% include "process/process_list.html" with procs=adv_processes2 proctable_archive=True %}
{% include "public/person_process_table.html" with p=p processes=adv_processes only %}
{% endif %}
{% if am %}
AM history
{% include "process/process_list.html" with procs=am_processes2 proctable_archive=True %}
{% include "public/person_process_table.html" with p=p processes=am_processes only %}
{% endif %}
{% if audit_log %}
Audit log
Date |
Author |
Notes |
Changes |
{% for e in audit_log %}
{{e.logdate|date:"Y-m-d H:i:s"}} |
{{e.author}} |
{{e.notes}} |
{% for field, old, new in e.changes %}
- {{field}}: {{old}} → {{new}}
{% endfor %}
|
{% endfor %}
{% endif %}
{% endblock %}