{% extends "wizard/base.html" %} {% load nm %} {% load js %} {% block content %}

Advocate someone

{% if not request.user.is_authenticated %}

You are not currently logged in. See the Single Sign-On page for details.

{% elif not visitor %}

You are currently logged in with SSO username {{request.user.username}}, but not mapped to any person in the site. If you are a Debian Maintainer, you can try to correct the situation using the claim interface.

{% else %}
{% csrf_token %}

Who do you want to advocate? I can search names, nicknames, and OpenPGP key fingerprints.

{{form.as_p}}
{% if processes %}

These people are ready to be advocated; click on a name to go to the advocacy page:

{% for process, adv in processes.items %} {% with process.person as person %} {% endwith %} {% endfor %}
Name UID OpenPGP fingerprint Current status Applying for
{{person.fullname}} {{person.uid}} {{person.fpr|fingerprint}} {{person.status|desc_status}} {{process.applying_for}}
{% endif %} {% if people %}

These people have not currently applied to change their status in Debian. If the person you want to advocate is in this list, they need to request a new status first:

{% for person in people %} {% endfor %}
Name UID OpenPGP fingerprint Current status
{{person.fullname}} {{person.uid}} {{person.fpr|fingerprint}} {{person.status|desc_status}}
{% endif %} {% endif %} {% if visitor %} {% include "wizard/whoami.html" %} {% endif %} {% endblock %}