{% extends 'base.html' %} {% block title %}Update Customer{% endblock %} {% block page_content %} {% include 'messages.html' %}
Update {{ customer.name }}
{% csrf_token %} {{ form.as_p }}
{{ customer.name }} Details
Name{{ customer.name }}
Description{{ customer.description }}
Primary phone{{ customer.primary_phone }}
Secondary phone{{ customer.secondary_phone }}
Email{{ customer.email }}
Additional email{{ customer.additional_email }}
Address{{ customer.address }}
Additional address{{ customer.additional_address }}
Created{{ customer.date_created|date:'d-m-Y H:i' }}
{% endblock page_content %}