{% extends "restricted/base.html" %} {% load js %} {% load nm %} {% block head_resources %} {{block.super}} {% jsinclude "tables" %} {% endblock %} {% block head %} {{block.super}} {% endblock %} {% block breadcrumbs %}{{block.super}} / ammain{% endblock %} {% block relatedpages %} am settings {{block.super}} {% endblock %} {% block content %}

Debian New Member

Currently the database thinks you have the following functions:

{% if visitor.is_admin %}

Front desk

Processes needing attention

{% include "process/process_list.html" with procs=current_processes %} {% if approved_processes %}

Processes approved but not yet closed

{% include "process/process_list.html" with procs=approved_processes %} {% endif %}

Application manager availability

{% if am_available %}

The following managers have free slots (#free/#slots):

{% else %}

Currently there are no free application managers.

{% endif %}

Old style processes

The following people have applied but have not enough advocates or we did not send the activity poll yet.

{% include "restricted/process_table.html" with p=p progs=prog_app_new extras="" only %}

The following people have not replied to the activity poll yet.

{% include "restricted/process_table.html" with p=p progs=prog_poll_sent extras="" only %}

The following applicants are waiting for an Application Manager to be assigned (first one is oldest).

{% include "restricted/process_table.html" with p=p progs=prog_app_ok extras="" only %}

Applicants currently not ready to be assigned to an AM (ordered by hold date):

{% include "restricted/process_table.html" with p=p progs=prog_app_hold extras="" only %}

Applicants assigned to AM but AM has not confirmed:

{% include "restricted/process_table.html" with p=p progs=prog_am_rcvd extras="m" only %}

The reports of the following applicants approved by their AM need to be checked:

{% include "restricted/process_table.html" with p=p progs=prog_am_ok extras="m" only %}

The following applicants have incomplete AM reports (ordered by hold date):

{% include "restricted/process_table.html" with p=p progs=prog_fd_hold extras="m" only %}

Debian Account Manager

The following applicants have been approved by the NM committee and the FD but a DAM has not fully processed them yet (sorted by FD approval):

{% include "restricted/process_table.html" with p=p progs=prog_fd_ok extras="m" only %}

Applicants approved by a DAM, but for which no account has been created yet:

{% include "restricted/process_table.html" with p=p progs=prog_dam_ok extras="m" only %}

These are applications that have been put on hold at the DAM stage (sorted by hold date):

{% include "restricted/process_table.html" with p=p progs=prog_dam_hold extras="m" only %} {% endif %} {# only show application manager section if the current user either has AM slots or any existing process assigned #} {% if visitor.am.slots or am_prog_rcvd or am_prog_am or am_prog_hold or am_prog_done %}

Application Manager

Hello {{visitor.uid}}, here is a list of New Member applicants that you are the AM for:

{% include "process/process_list.html" with procs=am_processes %}

Applicants to Accept

These applicants have been assigned to you by the Front Desk but you have not confirmed that you will or will not be their AM (ordered by assignment date).

{% include "restricted/process_table.html" with p=p progs=am_prog_rcvd extras="" only %}

Applicants to process

The following applicants you are the AM for (ordered by the date you accepted them as NMs):

{% include "restricted/process_table.html" with p=p progs=am_prog_am extras="" only %}

Applicants on Hold

Applicants who make it here have some issue with completing the process but are expected to be able to work around that soon (ordered by hold date).

{% include "restricted/process_table.html" with p=p progs=am_prog_hold extras="" only %}

Processed Applicants

These applicants you have processed through the system and are here for historical or informational purposes (ordered by account creation date).

{% include "restricted/process_table.html" with p=p progs=am_prog_done extras="" only %} {% endif %} {% comment %}

Key

{% endcomment %} {% endblock %}