{% extends "admin/change_form.html" %} {% load i18n admin_static admin_modify admin_urls %} {% load static %} {% block extrahead %} {{ block.super }} {# This makes use of some hacky javascript to replace the default "actions" dropdown list with more user-friendly buttons for each action. #} {% endblock %} {% block content %}

Create Account for {{ member.first_name }} {{ member.last_name }}

{% include "admin/memberdb/membership_summary.html" %}
{{ wizard.management_form }} {% csrf_token %} {% if form.non_field_errors|length > 0 %}

Please correct the errors below.

{{ form.non_field_errors }} {% endif %} {{ wizard.form.management_form }}
{% for field in wizard.form %}
{{ field.label_tag }} {{ field }} {{ field.errors }} {% if field.field.help_text %}

{{ field.field.help_text|safe }}

{% endif %}
{% endfor %}
{% if wizard.steps.prev %} {% endif %} {% if wizard.steps.next %} {% else %} {%endif%}
{% if wizard.steps.index == 1 %} {% endif %}
{% endblock %}