{% extends "public/base.html" %} {% load nm %} {% load js %} {% block head_resources %} {{block.super}} {% jsinclude "tables" %} {% endblock %} {% block head %} {{block.super}} {% endblock %} {% block breadcrumbs %}{{block.super}} / people{% endblock %} {% block relatedpages %} all people {{block.super}} {% endblock %} {% block content %}

Debian New Member - Find{% if visitor.is_admin %}/create{% endif %} person

Fill in fields of the form to look for people. {% if visitor.is_admin %} If the person you are looking for is not found, you can use the same form to create a new Person record. {% endif %}
{% csrf_token %} {% for hidden in form.hidden_fields %} {{hidden}} {% endfor %} {{ form.non_field_errors }} {% for field in form.visible_fields %} {% endfor %}
{{field.label_tag}} {{field}} {{field.errors}}
{% if visitor.is_admin %} {% endif %}

Results are shown as you type.

No results.

{% comment %} {% for p in people %} {% if not status %} {% endif %} {% endfor %} {% endcomment %}
Status Since Account name Name
{{p.status|desc_status}}{{p.status_changed|date:"Y-m-d"}} {{p.uid|default:"None chosen yet"}} {{p.fullname}}
{% endblock %}