{% extends "core/base.html" %} {% block section_title %}Customer Details{% endblock %} {% block content %}

{{ customer.name }}

Description

{{ customer.description }}

Project Manager

    {% for pm in customer.project_manager.all %}
  • {{ pm }}
  • {% endfor %}

{% endblock %}