{% extends "base.html" %} {% block head %} {% endblock %} {% block title %} Patient form {% endblock %} {% block content %} {% if object %}

Update patient:

{% else %}

Create a Patient

{% endif %} {% if form.has_errors %}

Please correct the following error{{ form.errors|pluralize }}:

{% endif %}
{% csrf_token %} {{ form.as_p }}
Return to patient list {% endblock %}