{% extends "base.html" %} {% block title %}Add new Person{% endblock %} {% block content %}

Add a New Person

{% csrf_token %} {% for field in form %}

{{ field.label_tag }} {{ field }} {% if field.errors %}

{{ field.errors }}
{% endif %}

{% endfor %}
{% endblock %}