{% extends "forms.html" %} {% block title %}Edit Person{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% csrf_token %}
{% load forms %} {% if form.errors or form.non_field_errors %}

Please correct the error{{ form.errors|pluralize }} below.

{% endif %}

Personal Details

{% formfield form.title %} {% formfield form.short_name %} {% formfield form.full_name %} {% inlineformfield form.institute form.department %} {% formfield form.position %} {% formfield form.supervisor %} {% formfield form.email %} {% inlineformfield form.telephone form.mobile %} {% formfield form.fax %} {% formfield form.address %} {% formfield form.country %} {% formfield form.comment %} {% formfield form.expires %} {% formfield form.is_admin %} {% formfield form.is_systemuser %}
{% if not person %}

Login Details

{% formfield form.username %} {% formfield form.password1 %} {% formfield form.password2 %}

User Account Details

{% formfield form.needs_account %} {% formfield form.project %}
{% endif %} {{ form.non_field_errors }}
{% endblock %}